Skip to content

Commit

Permalink
Fix test of confirmPasswordReset
Browse files Browse the repository at this point in the history
  • Loading branch information
micheljung committed May 19, 2018
1 parent bb1b5d2 commit ffcee61
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ public void confirmPasswordReset() throws Exception {
UserService.KEY_PASSWORD, NEW_PASSWORD));

mockMvc.perform(
get("/users/confirmPasswordReset/{token}", token))
get("/users/confirmPasswordReset?token={token}", token))
.andExpect(status().isFound())
.andExpect(redirectedUrl("http://localhost/password_resetted"));
}
Expand Down

0 comments on commit ffcee61

Please sign in to comment.