From c0b65a98c01d318c176ec8b2af6271581d3ed137 Mon Sep 17 00:00:00 2001 From: lukinovec Date: Wed, 27 Jul 2022 10:58:27 +0200 Subject: [PATCH] Fix typo --- tests/SingleDatabaseTenancyTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/SingleDatabaseTenancyTest.php b/tests/SingleDatabaseTenancyTest.php index 34b12383..ff295a22 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 a r e scoped to the current tenant when accessed directly and parent relationship traitis used', function () { +test('secondary models ARE scoped to the current tenant when accessed directly and parent relationship traits used', function () { $acme = Tenant::create([ 'id' => 'acme', ]);