From 0a01aca6b4fcda26c8893d3cd5fa45578fc808ab Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Fri, 7 Nov 2014 11:56:21 -0600 Subject: [PATCH] Use the console kernel. --- tests/TestCase.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/TestCase.php b/tests/TestCase.php index 37592f79..69726c3b 100644 --- a/tests/TestCase.php +++ b/tests/TestCase.php @@ -11,7 +11,7 @@ public function createApplication() { $app = require __DIR__.'/../bootstrap/app.php'; - $app->make('Illuminate\Contracts\Http\Kernel')->bootstrap(); + $app->make('Illuminate\Contracts\Console\Kernel')->bootstrap(); return $app; }