From e1c79bab1106fa6a41893885a364c4a061d3be6b Mon Sep 17 00:00:00 2001 From: stancl Date: Tue, 2 Jun 2020 18:26:37 +0000 Subject: [PATCH] Apply fixes from StyleCI --- tests/CachedTenantResolverTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/CachedTenantResolverTest.php b/tests/CachedTenantResolverTest.php index 94962040..40630405 100644 --- a/tests/CachedTenantResolverTest.php +++ b/tests/CachedTenantResolverTest.php @@ -40,14 +40,14 @@ class CachedTenantResolverTest extends TestCase DB::enableQueryLog(); DomainTenantResolver::$shouldCache = false; - + $this->assertTrue($tenant->is(app(DomainTenantResolver::class)->resolve('acme'))); DB::flushQueryLog(); $this->assertTrue($tenant->is(app(DomainTenantResolver::class)->resolve('acme'))); $this->assertNotEmpty(DB::getQueryLog()); // not empty DomainTenantResolver::$shouldCache = true; - + $this->assertTrue($tenant->is(app(DomainTenantResolver::class)->resolve('acme'))); DB::flushQueryLog(); $this->assertTrue($tenant->is(app(DomainTenantResolver::class)->resolve('acme')));