From 88ee0f4e55e26c8f4f0af9b0d0f0c72daca638ff Mon Sep 17 00:00:00 2001 From: Nafies Luthfi Date: Tue, 12 Mar 2019 22:22:36 +0800 Subject: [PATCH] Fixing tests after testbench update to 3.8 --- tests/TestCase.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/TestCase.php b/tests/TestCase.php index 8c55a86..18a3490 100644 --- a/tests/TestCase.php +++ b/tests/TestCase.php @@ -25,6 +25,8 @@ abstract class TestCase extends BaseTestCase $this->lang_name = snake_case($this->model_name); $this->collection_model_var_name = camel_case($this->plural_model_name); $this->single_model_var_name = camel_case($this->model_name); + + $this->withoutMockingConsoleOutput(); } public function tearDown(): void