From 52db2a0c06ccb11ccf673d0a3e518cdea250895a Mon Sep 17 00:00:00 2001 From: lukinovec Date: Thu, 5 Jan 2023 16:49:49 +0100 Subject: [PATCH] Remove group('prefix') --- tests/PrefixCacheBootstrapperTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/PrefixCacheBootstrapperTest.php b/tests/PrefixCacheBootstrapperTest.php index d884fc55..17b5e00a 100644 --- a/tests/PrefixCacheBootstrapperTest.php +++ b/tests/PrefixCacheBootstrapperTest.php @@ -86,7 +86,7 @@ test('cache prefix is different for each tenant', function () { expect(cache($tenantOnePrefix . ':key'))->toBe('tenantone-value'); expect(cache($tenantTwoPrefix . ':key'))->toBe('tenanttwo-value'); -})->group('prefix'); +}); test('cache is persisted when reidentification is used', function () { $tenant1 = Tenant::create();