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 +});