1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2025-12-12 17:24:03 +00:00

Apply fixes from StyleCI

This commit is contained in:
stancl 2019-09-17 15:59:51 +00:00 committed by StyleCI Bot
parent 5e9b421aa6
commit 8f9120e723

View file

@ -56,7 +56,8 @@ class TenantDatabaseManagerTest extends TestCase
$job->handle(); $job->handle();
$this->assertTrue(app($databaseManager)->databaseExists($name)); $this->assertTrue(app($databaseManager)->databaseExists($name));
$job = new QueuedTenantDatabaseDeleter(app($databaseManager), $name);$job->handle(); $job = new QueuedTenantDatabaseDeleter(app($databaseManager), $name);
$job->handle();
$this->assertFalse(app($databaseManager)->databaseExists($name)); $this->assertFalse(app($databaseManager)->databaseExists($name));
} }