1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2026-02-05 20:54:03 +00:00

Apply fixes from StyleCI

This commit is contained in:
stancl 2019-09-30 14:50:03 +00:00 committed by StyleCI Bot
parent 596f5682d0
commit f7c44506d3

View file

@ -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());