Skip to content
This repository was archived by the owner on Feb 18, 2023. It is now read-only.

Commit 26dee5f

Browse files
committed
set the rounds for the hash in 4 to speed up tests.
1 parent a32ecc2 commit 26dee5f

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

tests/CreatesApplication.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
namespace Tests;
44

5+
use Illuminate\Support\Facades\Hash;
56
use Illuminate\Contracts\Console\Kernel;
67

78
trait CreatesApplication
@@ -17,6 +18,8 @@ public function createApplication()
1718

1819
$app->make(Kernel::class)->bootstrap();
1920

21+
Hash::setRounds(4);
22+
2023
return $app;
2124
}
2225
}

0 commit comments

Comments
 (0)