From e66a1127134ec0c19286eaf1eaf287b03fed73af Mon Sep 17 00:00:00 2001 From: Pig Fang Date: Tue, 21 Aug 2018 11:14:22 +0800 Subject: [PATCH] Fix test --- tests/SetupControllerTest.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/SetupControllerTest.php b/tests/SetupControllerTest.php index 92f91067..133d70e1 100644 --- a/tests/SetupControllerTest.php +++ b/tests/SetupControllerTest.php @@ -5,6 +5,7 @@ namespace Tests; use Mockery; use Exception; use CreateAllTables; +use AddVerificationToUsersTable; use Illuminate\Support\Facades\File; use Illuminate\Support\Facades\Schema; use Illuminate\Support\Facades\Storage; @@ -160,6 +161,9 @@ class SetupControllerTest extends TestCase ->andReturnUsing(function () { $migration = new CreateAllTables(); $migration->up(); + + $migration = new AddVerificationToUsersTable(); + $migration->up(); }); $this->post('/setup/finish', [ 'email' => 'a@b.c',