Browse Source

Merge pull request #4797 from connectkushal/patch-2

[5.8] Update UserFactory password in line with #4794
Taylor Otwell 6 years ago
parent
commit
e830a3af02
1 changed files with 1 additions and 1 deletions
  1. 1 1
      database/factories/UserFactory.php

+ 1 - 1
database/factories/UserFactory.php

@@ -17,7 +17,7 @@ $factory->define(App\User::class, function (Faker $faker) {
     return [
         'name' => $faker->name,
         'email' => $faker->unique()->safeEmail,
-        'password' => '$2y$10$TKh8H1.PfQx37YgCzwiKb.KjNyWgaHb9cbcoQgdIVFlYg7B77UdFm', // secret
+        'password' => '$2y$10$92IXUNpkjO0rOQ5byMi.Ye4oKoEa3Ro9llC/.og/at2.uheWG/igi', // password
         'remember_token' => str_random(10),
     ];
 });