1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2026-09-20 15:34:03 +00:00

Correct the regression test

This commit is contained in:
lukinovec 2026-08-19 10:46:08 +02:00 committed by Samuel Stancl
parent 0eb2cf18a4
commit 2bd590ef0e

View file

@ -71,8 +71,6 @@ test('create storage symlinks action fails for disks that are not tenant-aware',
/** @var Tenant $tenant */ /** @var Tenant $tenant */
$tenant = Tenant::create(); $tenant = Tenant::create();
(new CreateStorageSymlinksAction)($tenant);
expect(fn () => (new CreateStorageSymlinksAction)($tenant)) expect(fn () => (new CreateStorageSymlinksAction)($tenant))
->toThrow(Exception::class, 'Disk public is not tenant-aware.'); ->toThrow(Exception::class, 'Disk public is not tenant-aware.');