From 006a6800cca343d9ce46effdea0007346c14b73a Mon Sep 17 00:00:00 2001 From: lukinovec Date: Tue, 9 Aug 2022 12:32:01 +0200 Subject: [PATCH] Fix test name typo --- tests/SingleDatabaseTenancyTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/SingleDatabaseTenancyTest.php b/tests/SingleDatabaseTenancyTest.php index ff295a22..853f646b 100644 --- a/tests/SingleDatabaseTenancyTest.php +++ b/tests/SingleDatabaseTenancyTest.php @@ -61,7 +61,7 @@ test('secondary models are not scoped to the current tenant when accessed direct expect(Comment::count())->toBe(2); }); -test('secondary models ARE scoped to the current tenant when accessed directly and parent relationship traits used', function () { +test('secondary models ARE scoped to the current tenant when accessed directly and parent relationship trait is used', function () { $acme = Tenant::create([ 'id' => 'acme', ]);