Merge pull request #4517 from laurencei/patch-1

Reduce Hash computations during tests
This commit is contained in:
Taylor Otwell
2017-12-19 08:14:04 -06:00
committed by GitHub

View File

@@ -2,6 +2,7 @@
namespace Tests; namespace Tests;
use Illuminate\Support\Facades\Hash;
use Illuminate\Contracts\Console\Kernel; use Illuminate\Contracts\Console\Kernel;
trait CreatesApplication trait CreatesApplication
@@ -17,6 +18,8 @@ trait CreatesApplication
$app->make(Kernel::class)->bootstrap(); $app->make(Kernel::class)->bootstrap();
Hash::setRounds(5);
return $app; return $app;
} }
} }