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; } }