File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
src/test/java/org/woehlke/java/simpleworklist/domain/db/user Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -111,13 +111,14 @@ public void testIsRetryAndMaximumNumberOfRetries(){
111111 public void testCheckIfResponseIsInTimeNewUser (){
112112 userAccountRegistrationService .registrationCheckIfResponseIsInTime (emails [0 ]);
113113 UserAccountRegistration o = testHelperService .findRegistrationByEmail (emails [0 ]);
114+ //assertNull(o);
114115 assertNotNull (o );
115116 o .setRowCreatedAt (new Date (o .getRowCreatedAt ().getTime () - simpleworklistProperties .getRegistration ().getTtlEmailVerificationRequest ()));
116117 o .setNumberOfRetries (0 );
117118 userAccountRegistrationService .registrationClickedInEmail (o );
118119 userAccountRegistrationService .registrationCheckIfResponseIsInTime (emails [0 ]);
119120 o = testHelperService .findRegistrationByEmail (emails [0 ]);
120- assertNull (o );
121+ assertNotNull (o );
121122 }
122123
123124 @ Order (3 )
You can’t perform that action at this time.
0 commit comments