Skip to content

Commit c012dca

Browse files
committed
SiteServiceTest: fixed a typo in test methods names.
Corrections for d14c11f commit. Found by Intellij IDEA's spell checker. No functional changes.
1 parent 3961bb6 commit c012dca

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/java/ru/mystamps/web/service/SiteServiceTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ public void logAboutAbsentPageShouldPassActivityTypeToDao() {
9797
}
9898

9999
@Test
100-
public void logAboutAbsentPageShouldAssignOccuredAtToCurrentDate() {
100+
public void logAboutAbsentPageShouldAssignOccurredAtToCurrentDate() {
101101
when(suspiciousActivityTypeDao.findByName(anyString()))
102102
.thenReturn(TestObjects.createPageNotFoundActivityType());
103103

@@ -259,7 +259,7 @@ public void logAboutFailedAuthenticationShouldPassActivityTypeToDao() {
259259
}
260260

261261
@Test
262-
public void logAboutFailedAuthenticationShouldAssignOccuredAtToCurrentDate() {
262+
public void logAboutFailedAuthenticationShouldAssignOccurredAtToCurrentDate() {
263263
when(suspiciousActivityTypeDao.findByName(anyString()))
264264
.thenReturn(TestObjects.createAuthFailedActivityType());
265265

0 commit comments

Comments
 (0)