From b38aee0a6a9e7310d1410dea38471129aec7c9e4 Mon Sep 17 00:00:00 2001 From: lukinovec Date: Thu, 5 Jan 2023 16:28:33 +0100 Subject: [PATCH] Remove unused import, change word --- tests/PrefixCacheBootstrapperTest.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/PrefixCacheBootstrapperTest.php b/tests/PrefixCacheBootstrapperTest.php index d6794342..e7fe4b50 100644 --- a/tests/PrefixCacheBootstrapperTest.php +++ b/tests/PrefixCacheBootstrapperTest.php @@ -2,7 +2,6 @@ declare(strict_types=1); -use Illuminate\Cache\RedisStore; use Illuminate\Cache\CacheManager; use Illuminate\Support\Facades\Event; use Stancl\Tenancy\Events\TenancyEnded; @@ -50,7 +49,7 @@ test('Tenancy overrides CacheManager', function() { expect(app(CacheManager::class)::class)->toBe(TenancyCacheManager::class); }); -test('cache prefix is separate for each tenant', function () { +test('cache prefix is different for each tenant', function () { $originalPrefix = config('cache.prefix'); $prefixBase = config('tenancy.cache.prefix_base');