From 4dc12a92591476eea9472f99318655081572bee1 Mon Sep 17 00:00:00 2001 From: Nafies Luthfi Date: Thu, 18 Oct 2018 20:46:36 +0800 Subject: [PATCH] Add Hash::setRounds(4) for faster test --- tests/CreatesApplication.php | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/CreatesApplication.php b/tests/CreatesApplication.php index 547152f..1ea241a 100644 --- a/tests/CreatesApplication.php +++ b/tests/CreatesApplication.php @@ -16,6 +16,7 @@ trait CreatesApplication $app = require __DIR__.'/../bootstrap/app.php'; $app->make(Kernel::class)->bootstrap(); + \Hash::setRounds(4); return $app; }