diff --git a/tests/CreatesApplication.php b/tests/CreatesApplication.php index 547152f6..ecfe637d 100644 --- a/tests/CreatesApplication.php +++ b/tests/CreatesApplication.php @@ -2,6 +2,7 @@ namespace Tests; +use Illuminate\Support\Facades\Hash; use Illuminate\Contracts\Console\Kernel; trait CreatesApplication @@ -16,6 +17,8 @@ public function createApplication() $app = require __DIR__.'/../bootstrap/app.php'; $app->make(Kernel::class)->bootstrap(); + + Hash::setRounds(5); return $app; }