Skip to content

Commit 9d15c7f

Browse files
committed
Adjusted the url for AdminTest with new password reset flow
1 parent 7612030 commit 9d15c7f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/Integration/AdminTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ public function testResetPasswordFormIndex()
109109
'created_at' => Carbon::now(),
110110
]);
111111

112-
$response = $this->get('admin/reset/'.$token);
112+
$response = $this->get('admin/password/reset/'.$token);
113113
$this->assertResponseOk();
114114
}
115115

@@ -129,7 +129,7 @@ public function testResetPasswordFormSave()
129129
'created_at' => Carbon::now(),
130130
]);
131131

132-
$response = $this->post('admin/reset/'.$token, [
132+
$response = $this->post('admin/password/reset/'.$token, [
133133
'email' => 'test@domain.com',
134134
'password' => 'farting',
135135
'password_confirmation' => 'farting',

0 commit comments

Comments
 (0)