From 1e04835536be486eecf7ba8f0caeeb5cb7e434af Mon Sep 17 00:00:00 2001 From: lukinovec Date: Fri, 30 Sep 2022 10:04:51 +0200 Subject: [PATCH] Fix test name typo --- tests/PendingTenantsTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/PendingTenantsTest.php b/tests/PendingTenantsTest.php index 64ddda2d..0aec0d3c 100644 --- a/tests/PendingTenantsTest.php +++ b/tests/PendingTenantsTest.php @@ -84,7 +84,7 @@ test('clear pending tenants command all option overrides config', function () { expect(Tenant::onlyPending()->count())->toBe(0); }); -test('tenancy can check for rpending tenants', function () { +test('tenancy can check for pending tenants', function () { Tenant::query()->delete(); expect(Tenant::onlyPending()->exists())->toBeFalse(); @@ -140,4 +140,4 @@ test('pending events are triggerred', function () { Event::assertDispatched(PullingPendingTenant::class); Event::assertDispatched(PendingTenantPulled::class); -}); \ No newline at end of file +});