1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2025-12-12 20:54:04 +00:00

Remove unused import, change word

This commit is contained in:
lukinovec 2023-01-05 16:28:33 +01:00
parent 7f10b9af41
commit b38aee0a6a

View file

@ -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');