Browse Source

Use the console kernel.

Taylor Otwell 9 years ago
parent
commit
0a01aca6b4
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tests/TestCase.php

+ 1 - 1
tests/TestCase.php

@@ -11,7 +11,7 @@ class TestCase extends Illuminate\Foundation\Testing\TestCase {
 	{
 		$app = require __DIR__.'/../bootstrap/app.php';
 
-		$app->make('Illuminate\Contracts\Http\Kernel')->bootstrap();
+		$app->make('Illuminate\Contracts\Console\Kernel')->bootstrap();
 
 		return $app;
 	}