From 26dee5f461c5cc7811839676246f7f902ed7eb02 Mon Sep 17 00:00:00 2001 From: Jose Luis Fonseca Date: Fri, 23 Mar 2018 17:22:47 -0500 Subject: [PATCH] set the rounds for the hash in 4 to speed up tests. --- tests/CreatesApplication.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/CreatesApplication.php b/tests/CreatesApplication.php index 547152f..df7814b 100755 --- 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 @@ public function createApplication() $app->make(Kernel::class)->bootstrap(); + Hash::setRounds(4); + return $app; } }