We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7612030 commit 9d15c7fCopy full SHA for 9d15c7f
tests/Integration/AdminTest.php
@@ -109,7 +109,7 @@ public function testResetPasswordFormIndex()
109
'created_at' => Carbon::now(),
110
]);
111
112
- $response = $this->get('admin/reset/'.$token);
+ $response = $this->get('admin/password/reset/'.$token);
113
$this->assertResponseOk();
114
}
115
@@ -129,7 +129,7 @@ public function testResetPasswordFormSave()
129
130
131
132
- $response = $this->post('admin/reset/'.$token, [
+ $response = $this->post('admin/password/reset/'.$token, [
133
'email' => 'test@domain.com',
134
'password' => 'farting',
135
'password_confirmation' => 'farting',
0 commit comments