1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2025-12-12 20:54:04 +00:00

Merge branch 'master' of github.com:stancl/tenancy

This commit is contained in:
Samuel Štancl 2019-09-17 18:57:31 +02:00
commit 9c9858e97e

View file

@ -55,7 +55,8 @@ class TenantDatabaseManagerTest extends TestCase
$job->handle();
$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));
}