Skip to content

Commit d2a7162

Browse files
committed
Fix test to obey added documentation
1 parent d6073fd commit d2a7162

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/org/jabref/model/strings/StringUtilTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ void StringUtilClassIsSmall() throws Exception {
2121
Path path = Paths.get("src", "main", "java", StringUtil.class.getName().replace('.', '/') + ".java");
2222
int lineCount = Files.readAllLines(path, StandardCharsets.UTF_8).size();
2323

24-
assertTrue(lineCount <= 749, "StringUtil increased in size to " + lineCount + ". "
24+
assertTrue(lineCount <= 756, "StringUtil increased in size to " + lineCount + ". "
2525
+ "We try to keep this class as small as possible. "
2626
+ "Thus think twice if you add something to StringUtil.");
2727
}

0 commit comments

Comments
 (0)