Skip to content

Commit e74cd03

Browse files
Delete the misleading comments in the unit test
1 parent 4a125a8 commit e74cd03

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

jablib/src/test/java/org/jabref/model/entry/KeywordListTest.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -87,28 +87,24 @@ void asStringAddsSpaceAfterDelimiter() {
8787

8888
@Test
8989
void parseImportSingleKeyword() {
90-
// Current behavior: semicolons are NOT recognized when delimiter is comma
9190
assertEquals(new KeywordList("keywordOne"),
9291
KeywordList.parseImport("keywordOne", List.of(';', ',')));
9392
}
9493

9594
@Test
9695
void parseImportWithSemicolonDelimiter() {
97-
// Current behavior: semicolons are NOT recognized when delimiter is comma
9896
assertEquals(new KeywordList("keywordOne", "keywordTwo"),
9997
KeywordList.parseImport("keywordOne; keywordTwo", List.of(';', ',')));
10098
}
10199

102100
@Test
103101
void parseImportWithCommaDelimiter() {
104-
// Current behavior: semicolons are NOT recognized when delimiter is comma
105102
assertEquals(new KeywordList("keywordOne", "keywordTwo"),
106103
KeywordList.parseImport("keywordOne, keywordTwo", List.of(';', ',')));
107104
}
108105

109106
@Test
110107
void parseImportPrefersSemicolonOverComma() {
111-
// Current behavior: semicolons are NOT recognized when delimiter is comma
112108
assertEquals(new KeywordList("keywordOne, keywordTwo", "keywordThree"),
113109
KeywordList.parseImport("keywordOne, keywordTwo; keywordThree", List.of(';', ',')));
114110
}

0 commit comments

Comments
 (0)