From d48db134d789da8020ce1f8a9bb1548048cab191 Mon Sep 17 00:00:00 2001 From: DariusIII Date: Thu, 26 Jul 2018 11:00:30 +0200 Subject: [PATCH] Update CreatesApplication class --- Changelog | 1 + tests/CreatesApplication.php | 3 --- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/Changelog b/Changelog index b79548c95..2b99c80aa 100755 --- a/Changelog +++ b/Changelog @@ -1,4 +1,5 @@ 2018-07-26 DariusIII + * Chg: Update CreatesApplication class * Chg: Add missing tests * Chg: Update releases date handling in RSS and API operations * Chg: Update tinymce to version 4.8.1 diff --git a/tests/CreatesApplication.php b/tests/CreatesApplication.php index ff133fb4d..547152f6a 100644 --- a/tests/CreatesApplication.php +++ b/tests/CreatesApplication.php @@ -2,7 +2,6 @@ namespace Tests; -use Illuminate\Support\Facades\Hash; use Illuminate\Contracts\Console\Kernel; trait CreatesApplication @@ -18,8 +17,6 @@ trait CreatesApplication $app->make(Kernel::class)->bootstrap(); - Hash::driver('bcrypt')->setRounds(4); - return $app; } }