1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2026-02-05 18:14:04 +00:00

Fix test name typo

This commit is contained in:
lukinovec 2022-09-30 10:04:51 +02:00
parent 0005f0eaa7
commit 1e04835536

View file

@ -84,7 +84,7 @@ test('clear pending tenants command all option overrides config', function () {
expect(Tenant::onlyPending()->count())->toBe(0); 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(); Tenant::query()->delete();
expect(Tenant::onlyPending()->exists())->toBeFalse(); expect(Tenant::onlyPending()->exists())->toBeFalse();
@ -140,4 +140,4 @@ test('pending events are triggerred', function () {
Event::assertDispatched(PullingPendingTenant::class); Event::assertDispatched(PullingPendingTenant::class);
Event::assertDispatched(PendingTenantPulled::class); Event::assertDispatched(PendingTenantPulled::class);
}); });