Set the hashing rounds low to speed up tests

This commit is contained in:
Dane Everitt 2018-03-02 19:40:14 -06:00
parent d03559080f
commit f3144b872f
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53

View file

@ -3,6 +3,7 @@
namespace Tests;
use Cake\Chronos\Chronos;
use Illuminate\Support\Facades\Hash;
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
abstract class TestCase extends BaseTestCase
@ -16,6 +17,7 @@ abstract class TestCase extends BaseTestCase
{
parent::setUp();
Hash::setRounds(4);
$this->setKnownUuidFactory();
}