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()
81
81
{
82
82
$ document = new \stdClass ();
83
83
84
- $ this ->assertEquals ( false , $ this ->extension ->getParentPath ($ document ));
84
+ $ this ->assertFalse ( $ this ->extension ->getParentPath ($ document ));
85
85
86
86
$ this ->uow ->expects ($ this ->once ())
87
87
->method ('getDocumentId ' )
@@ -96,7 +96,7 @@ public function testGetPath()
96
96
{
97
97
$ document = new \stdClass ();
98
98
99
- $ this ->assertEquals ( null , $ this ->extension ->getPath ($ document ));
99
+ $ this ->assertNull ( $ this ->extension ->getPath ($ document ));
100
100
101
101
$ this ->uow ->expects ($ this ->once ())
102
102
->method ('getDocumentId ' )
@@ -318,7 +318,7 @@ public function testGetChild()
318
318
{
319
319
$ parent = new \stdClass ();
320
320
321
- $ this ->assertEquals ( null , $ this ->extension ->getChild ($ parent , 'bar ' ));
321
+ $ this ->assertNull ( $ this ->extension ->getChild ($ parent , 'bar ' ));
322
322
323
323
$ child = new \stdClass ();
324
324
You can’t perform that action at this time.
0 commit comments