File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
tests/Unit/Templating/Helper Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -81,7 +81,7 @@ public function testGetParentPath()
8181 {
8282 $ document = new \stdClass ();
8383
84- $ this ->assertEquals ( false , $ this ->extension ->getParentPath ($ document ));
84+ $ this ->assertFalse ( $ this ->extension ->getParentPath ($ document ));
8585
8686 $ this ->uow ->expects ($ this ->once ())
8787 ->method ('getDocumentId ' )
@@ -96,7 +96,7 @@ public function testGetPath()
9696 {
9797 $ document = new \stdClass ();
9898
99- $ this ->assertEquals ( null , $ this ->extension ->getPath ($ document ));
99+ $ this ->assertNull ( $ this ->extension ->getPath ($ document ));
100100
101101 $ this ->uow ->expects ($ this ->once ())
102102 ->method ('getDocumentId ' )
@@ -318,7 +318,7 @@ public function testGetChild()
318318 {
319319 $ parent = new \stdClass ();
320320
321- $ this ->assertEquals ( null , $ this ->extension ->getChild ($ parent , 'bar ' ));
321+ $ this ->assertNull ( $ this ->extension ->getChild ($ parent , 'bar ' ));
322322
323323 $ child = new \stdClass ();
324324
You can’t perform that action at this time.
0 commit comments