Skip to content

Commit d035429

Browse files
committed
work
1 parent cac2628 commit d035429

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/test/java/org/woehlke/java/simpleworklist/domain/UserPasswordRecoveryControllerIT.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ public void runAfterTestClass() {
146146
public void testResetPassword() {
147147
try {
148148
this.mockMvc.perform(
149-
get("/user/resetPassword")).andDo(print())
149+
get("/user/resetPassword/form")).andDo(print())
150150
.andExpect(view().name(containsString("user/resetPassword/resetPasswordForm")));
151151
} catch (Exception ex) {
152152
log.warn("Exception: " + ex.getLocalizedMessage());

src/test/java/org/woehlke/java/simpleworklist/domain/UserRegistrationControllerIT.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ public void runAfterTestClass() {
147147
public void testSignInFormularEmail() {
148148
try {
149149
this.mockMvc.perform(
150-
get("/user/register/"))
150+
get("/user/register/form"))
151151
.andDo(print())
152152
.andExpect(view().name(containsString("user/register/registerForm")));
153153
} catch (Exception ex) {

src/test/java/org/woehlke/java/simpleworklist/domain/db/user/UserAccountPasswordRecoveryServiceIT.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ public class UserAccountPasswordRecoveryServiceIT {
8585
public void testResetPassword() {
8686
try {
8787
this.mockMvc.perform(
88-
get("/user/resetPassword")).andDo(print())
88+
get("/user/resetPassword/form")).andDo(print())
8989
.andExpect(view().name(containsString("user/resetPassword/resetPasswordForm")));
9090
} catch (Exception ex) {
9191
log.warn("Exception: " + ex.getLocalizedMessage());

0 commit comments

Comments
 (0)