From 3cff2e3ba9a8b1df956da3a17c101358f8a7ba8d Mon Sep 17 00:00:00 2001 From: Abrar Ahmad Date: Thu, 24 Nov 2022 12:05:19 +0500 Subject: [PATCH] Update PrefixCacheBootstrapperTest.php --- tests/PrefixCacheBootstrapperTest.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/PrefixCacheBootstrapperTest.php b/tests/PrefixCacheBootstrapperTest.php index bdd54f44..ee8577cc 100644 --- a/tests/PrefixCacheBootstrapperTest.php +++ b/tests/PrefixCacheBootstrapperTest.php @@ -86,8 +86,10 @@ test('central cache is not broke', function () { expect(cache()->get('key'))->toBe('tenant'); tenancy()->end(); + cache()->put('key2', 'central-two'); expect(cache()->get('key'))->toBe('central'); + expect(cache()->get('key2'))->toBe('central-two'); }); test('cache base prefix can be customized', function () {