From f3144b872f12382b9f38a52778085cedc07ee87f Mon Sep 17 00:00:00 2001 From: Dane Everitt Date: Fri, 2 Mar 2018 19:40:14 -0600 Subject: [PATCH] Set the hashing rounds low to speed up tests --- tests/TestCase.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/TestCase.php b/tests/TestCase.php index 427744f71..4d4ce896e 100644 --- a/tests/TestCase.php +++ b/tests/TestCase.php @@ -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(); }