From f7c44506d3127982529be82d901668b5b645de6c Mon Sep 17 00:00:00 2001 From: stancl Date: Mon, 30 Sep 2019 14:50:03 +0000 Subject: [PATCH] Apply fixes from StyleCI --- tests/CommandsTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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());