diff --git a/tests/AppTest.php b/tests/AppTest.php index ffab15db..4a8e6165 100755 --- a/tests/AppTest.php +++ b/tests/AppTest.php @@ -318,7 +318,6 @@ public function testCanAddAndExecuteHooks() $result = \ob_get_contents(); \ob_end_clean(); - // var_dump($result); $this->assertEquals('(init)-x-def-(shutdown)', $result); // Default Params @@ -335,7 +334,6 @@ public function testCanAddAndExecuteHooks() $result = \ob_get_contents(); \ob_end_clean(); - // var_dump($result); $this->assertEquals('x-def', $result); } @@ -564,8 +562,6 @@ public function testMultipleAliases(string $path, string $expected): void $result = \ob_get_contents(); \ob_end_clean(); - // var_dump($result); - $this->assertEquals($expected, $result); } }