From d783879f9860f9bb8885fdd07b40e4244eb28ef2 Mon Sep 17 00:00:00 2001 From: Samuel Stancl Date: Tue, 8 Sep 2026 19:43:42 -0700 Subject: [PATCH] add assertion to ensure the two paths are the same --- tests/TenantAssetTest.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/TenantAssetTest.php b/tests/TenantAssetTest.php index 603db9b3..ccd8ae1b 100644 --- a/tests/TenantAssetTest.php +++ b/tests/TenantAssetTest.php @@ -83,6 +83,8 @@ test('tenant assets are served even when the suffix_storage_path config is set t $tenant = Tenant::create(); tenancy()->initialize($tenant); + expect(storage_path())->toBe($centralStoragePath); + $filename = 'testfile' . Str::random(8); Storage::disk('public')->put($filename, 'bar');