Skip to content

Commit

Permalink
fix typo in test case name
Browse files Browse the repository at this point in the history
  • Loading branch information
MrSebastian committed Nov 14, 2024
1 parent 90ea298 commit 398c72b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ void should_returnUnencryptedUsername_when_savingUser() {
}

@Test
void should_throwException_whenUserWithUsernameAlreadyExists() {
void should_throwException_when_userWithUsernameAlreadyExists() {
val userToSave = new User();
userToSave.setUsername(USERNAME_UNENCRYPTED);

Expand Down Expand Up @@ -173,7 +173,7 @@ void should_returnUnencryptedUsername_when_savingUser() {
}

@Test
void should_throwException_whenMultipleUsersHaveSameName() {
void should_throwException_when_multipleUsersHaveSameName() {
val user1 = new User();
user1.setUsername(USERNAME_UNENCRYPTED);
val user2 = new User();
Expand Down

0 comments on commit 398c72b

Please sign in to comment.