From ad996e6ef67d913a4e9b05c65f77fd244f56ea82 Mon Sep 17 00:00:00 2001 From: raccoon254 Date: Fri, 14 Jun 2024 18:14:23 +0300 Subject: [PATCH] User registration test fix --- tests/Feature/Auth/RegistrationTest.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/Feature/Auth/RegistrationTest.php b/tests/Feature/Auth/RegistrationTest.php index 1489d0e..95b128c 100644 --- a/tests/Feature/Auth/RegistrationTest.php +++ b/tests/Feature/Auth/RegistrationTest.php @@ -21,6 +21,8 @@ public function test_new_users_can_register(): void $response = $this->post('/register', [ 'name' => 'Test User', 'email' => 'test@example.com', + 'phone' => '12345678', + 'location' => 'Nairobi, Kenya', 'password' => 'password', 'password_confirmation' => 'password', ]);