Skip to content

Commit b6b54a2

Browse files
Enhance javadoc of 'AliasSuggestionTest'
1 parent 2e8560f commit b6b54a2

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

backend/pom.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@
4949
<scope>test</scope>
5050
</dependency>
5151

52-
5352
<dependency>
5453
<groupId>mysql</groupId>
5554
<artifactId>mysql-connector-java</artifactId>

backend/src/test/java/de/itermori/pse/kitroomfinder/backend/queryTests/AliasSuggestionTest.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@
3232
import static org.junit.jupiter.api.Assertions.assertEquals;
3333
import static org.junit.jupiter.api.Assertions.assertNotNull;
3434
import static org.junit.jupiter.api.Assertions.assertNull;
35-
import static org.junit.jupiter.api.Assertions.assertTrue;
3635
import static org.junit.jupiter.api.Assertions.fail;
3736

3837
/**
@@ -72,7 +71,7 @@ class AliasSuggestionTest {
7271
* Sets up the test resources.
7372
*/
7473
@BeforeEach
75-
void setUp(){
74+
void setUp() {
7675
userRepository.save(new User(UtilTests.USER, UtilTests.USER_AUTHORITY));
7776
userRepository.save(new User(UtilTests.ADMIN, UtilTests.ADMIN_AUTHORITY));
7877
aliasRepository.deleteAll();
@@ -190,5 +189,6 @@ void voteForAliasTest() {
190189
} catch (IOException e) {
191190
fail(e.getMessage());
192191
}
193-
194192
}
193+
194+
}

0 commit comments

Comments
 (0)