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

Commit

Permalink
set the rounds for the hash in 4 to speed up tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
joselfonseca committed Mar 23, 2018
1 parent a32ecc2 commit 26dee5f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/CreatesApplication.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

namespace Tests;

use Illuminate\Support\Facades\Hash;
use Illuminate\Contracts\Console\Kernel;

trait CreatesApplication
Expand All @@ -17,6 +18,8 @@ public function createApplication()

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

Hash::setRounds(4);

return $app;
}
}

0 comments on commit 26dee5f

Please sign in to comment.