Browse Source

set rounds

Taylor Otwell 6 years ago
parent
commit
7b138fe398
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tests/CreatesApplication.php

+ 1 - 1
tests/CreatesApplication.php

@@ -18,7 +18,7 @@ trait CreatesApplication
 
         $app->make(Kernel::class)->bootstrap();
 
-        Hash::setRounds(4);
+        Hash::driver('bcrypt')->setRounds(4);
 
         return $app;
     }