From 6eaab29a929e761a3e188a6c4d788f9070692816 Mon Sep 17 00:00:00 2001 From: Dane Everitt Date: Wed, 21 Mar 2018 22:28:01 -0500 Subject: [PATCH] Fix path to autoload file --- bootstrap/tests.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap/tests.php b/bootstrap/tests.php index 4e3a7e28a..6ddb47f70 100644 --- a/bootstrap/tests.php +++ b/bootstrap/tests.php @@ -3,7 +3,7 @@ use Illuminate\Contracts\Console\Kernel; use Symfony\Component\Console\Output\ConsoleOutput; -require __DIR__ . '/autoload.php'; +require __DIR__ . '/../vendor/autoload.php'; $app = require __DIR__ . '/app.php';