Fix User data in Testing seeder

This commit is contained in:
Bubka 2022-07-14 17:08:33 +02:00
parent 27a091630c
commit 558fd4d9ea

View File

@ -17,8 +17,8 @@ class TestingSeeder extends Seeder
public function run()
{
User::create([
'name' => 'tester',
'email' => 'tester@2fauth.app',
'name' => 'Tester',
'email' => 'testing@2fauth.app',
'password' => bcrypt('password'),
]);