File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
src/Symfony/Component/ObjectMapper/Tests Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -284,11 +284,11 @@ public function testMultipleTargetMapProperty()
284284 $ mapper = new ObjectMapper ();
285285 $ b = $ mapper ->map ($ u , MultipleTargetPropertyB::class);
286286 $ this ->assertInstanceOf (MultipleTargetPropertyB::class, $ b );
287- $ this ->assertEquals ($ b ->foo , ' TEST ' );
287+ $ this ->assertEquals (' TEST ' , $ b ->foo );
288288 $ c = $ mapper ->map ($ u , MultipleTargetPropertyC::class);
289289 $ this ->assertInstanceOf (MultipleTargetPropertyC::class, $ c );
290- $ this ->assertEquals ($ c ->bar , ' test ' );
291- $ this ->assertEquals ($ c ->foo , ' donotmap ' );
292- $ this ->assertEquals ($ c ->doesNotExistInTargetB , ' foo ' );
290+ $ this ->assertEquals (' test ' , $ c ->bar );
291+ $ this ->assertEquals (' donotmap ' , $ c ->foo );
292+ $ this ->assertEquals (' foo ' , $ c ->doesNotExistInTargetB );
293293 }
294294}
You can’t perform that action at this time.
0 commit comments