From 2d4c6e939f70e816833882d1fe5e219ffd82dca7 Mon Sep 17 00:00:00 2001 From: freek Date: Sat, 17 Jun 2017 02:25:09 +0200 Subject: [PATCH] try to fix tests --- tests/TestCase.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/TestCase.php b/tests/TestCase.php index f4b0f97..bc1c572 100644 --- a/tests/TestCase.php +++ b/tests/TestCase.php @@ -33,7 +33,7 @@ protected function getEnvironmentSetUp($app) $app['config']->set('database.default', 'mysql'); $app['config']->set('database.connections.mysql', [ 'driver' => 'mysql', - 'host' => 'localhost', + 'host' => '127.0.0.1', 'database' => 'laravel_tags', 'username' => env('DB_USERNAME', 'root'), 'password' => env('DB_PASSWORD', ''),