From 19156419ea5a262dd4250000a6a0fdd8d10b7b31 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matej=20Ba=C4=8Do?= Date: Tue, 1 Nov 2022 12:16:17 +0000 Subject: [PATCH] Remove unnessessary console logs --- tests/AppTest.php | 4 ---- 1 file changed, 4 deletions(-) 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); } }