diff --git a/tests/CreatesApplication.php b/tests/CreatesApplication.php index 547152f6..39637004 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 @@ -17,6 +18,8 @@ trait CreatesApplication $app->make(Kernel::class)->bootstrap(); + Hash::setRounds(5); + return $app; } }