From 398c72b7b3dc7cbd4efa9c1131b20db3a797a5ac Mon Sep 17 00:00:00 2001 From: MrSebastian <13592751+MrSebastian@users.noreply.github.com> Date: Thu, 14 Nov 2024 17:43:43 +0100 Subject: [PATCH] fix typo in test case name --- .../authservice/domain/UserRepositoryImplIntegrationTest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wls-auth-service/src/test/java/de/muenchen/oss/wahllokalsystem/authservice/domain/UserRepositoryImplIntegrationTest.java b/wls-auth-service/src/test/java/de/muenchen/oss/wahllokalsystem/authservice/domain/UserRepositoryImplIntegrationTest.java index 166c815b9..fadb305a9 100644 --- a/wls-auth-service/src/test/java/de/muenchen/oss/wahllokalsystem/authservice/domain/UserRepositoryImplIntegrationTest.java +++ b/wls-auth-service/src/test/java/de/muenchen/oss/wahllokalsystem/authservice/domain/UserRepositoryImplIntegrationTest.java @@ -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); @@ -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();