diff --git a/tests/CommandsTest.php b/tests/CommandsTest.php index 22e29cf6..1fdf9801 100644 --- a/tests/CommandsTest.php +++ b/tests/CommandsTest.php @@ -151,7 +151,7 @@ class CommandsTest extends TestCase $this->assertFalse(DB::table('users')->exists()); DB::table('users')->insert(['name' => 'xxx', 'password' => bcrypt('password'), 'email' => 'foo@bar.xxx']); $this->assertTrue(DB::table('users')->exists()); - + // test that db is wiped Artisan::call('tenants:migrate-fresh'); $this->assertFalse(DB::table('users')->exists());