From 810e997dfce09d3ca2731e1bfbb6eb6d7f14ac1e Mon Sep 17 00:00:00 2001 From: David Bomba Date: Sat, 21 Jan 2023 09:18:09 +1100 Subject: [PATCH] Remove logging --- tests/Feature/BaseApiTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Feature/BaseApiTest.php b/tests/Feature/BaseApiTest.php index d4cb5a17922e..03a1425814c1 100644 --- a/tests/Feature/BaseApiTest.php +++ b/tests/Feature/BaseApiTest.php @@ -187,7 +187,7 @@ class BaseApiTest extends TestCase collect($this->list_routes)->filter(function ($route){ return !in_array($route, ['tasks','users','group_settings','designs']); })->each(function($route){ - nlog($route); + // nlog($route); $response = $this->withHeaders([ 'X-API-SECRET' => config('ninja.api_secret'), 'X-API-TOKEN' => $this->low_token,