Skip to content

Commit 525f8bb

Browse files
committed
work
1 parent 0ba5dfb commit 525f8bb

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>org.woehlke</groupId>
66
<artifactId>simpleworklist</artifactId>
7-
<version>2.4.10-SNAPSHOT</version>
7+
<version>2.4.10</version>
88
<packaging>jar</packaging>
99

1010
<parent>
@@ -17,7 +17,7 @@
1717
<connection>scm:git:git@github.com:Spring-Framework-Java-Apps/simpleworklist.git</connection>
1818
<developerConnection>scm:git:git@github.com:Spring-Framework-Java-Apps/simpleworklist.git</developerConnection>
1919
<url>https://github.com/Spring-Framework-Java-Apps/simpleworklist/tree/${project.scm.tag}</url>
20-
<tag>v2.4.9</tag>
20+
<tag>v2.4.10</tag>
2121
</scm>
2222

2323
<name>simpleworklist</name>

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
@@ -123,7 +123,7 @@ public void testEnterNewPasswordFormularWithToken() {
123123
assertNotNull(o);
124124
boolean result = o.getDoubleOptInStatus() == UserAccountPasswordRecoveryStatus.PASSWORD_RECOVERY_SAVED_EMAIL
125125
|| o.getDoubleOptInStatus() == UserAccountPasswordRecoveryStatus.PASSWORD_RECOVERY_SENT_EMAIL;
126-
assertFalse(result);
126+
assertTrue(result);
127127
String url = "/user/resetPassword/confirm/" + o.getToken();
128128
try {
129129
this.mockMvc.perform(

0 commit comments

Comments
 (0)