From eef58bd93da7225887b48186929f4a6dfec1532a Mon Sep 17 00:00:00 2001 From: Abrar Ahmad Date: Mon, 28 Nov 2022 12:50:14 +0500 Subject: [PATCH] test names grammar --- tests/PrefixCacheBootstrapperTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/PrefixCacheBootstrapperTest.php b/tests/PrefixCacheBootstrapperTest.php index ee8577cc..1fee7e2a 100644 --- a/tests/PrefixCacheBootstrapperTest.php +++ b/tests/PrefixCacheBootstrapperTest.php @@ -75,7 +75,7 @@ test('prefix separate cache well enough', function () { expect(cache()->get('foo'))->toBe('xyz'); }); -test('central cache is not broke', function () { +test('central cache is persisted', function () { cache()->put('key', 'central'); $tenant1 = Tenant::create(); @@ -92,7 +92,7 @@ test('central cache is not broke', function () { expect(cache()->get('key2'))->toBe('central-two'); }); -test('cache base prefix can be customized', function () { +test('cache base prefix is customizable', function () { config([ 'tenancy.cache.prefix_base' => 'custom_' ]);