Skip to content

Commit abda7aa

Browse files
fix tests
1 parent 7a9956a commit abda7aa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

maven-plugin-tools-annotations/src/test/java/org/apache/maven/tools/plugin/extractor/annotations/converter/JavadocBlockTagsToXhtmlConverterTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ class JavadocBlockTagsToXhtmlConverterTest {
4747
@Test
4848
void testSee() {
4949
assertEquals(
50-
"<br /><strong>See also:</strong> \"Some reference\"",
50+
"<br />" + System.lineSeparator() + "<strong>See also:</strong> \"Some reference\"",
5151
converter.convert("see", "\"Some reference\"", context));
5252
assertEquals(
5353
", <a href=\"example.com\">Example</a>",
@@ -57,7 +57,7 @@ void testSee() {
5757
ConverterContext context2 =
5858
new SimpleConverterContext("my.package", URI.create("https://javadoc.example.com/"));
5959
assertEquals(
60-
"<br /><strong>See also:</strong> <a href=\"example.com\">Example</a>",
60+
"<br />" + System.lineSeparator() + "<strong>See also:</strong> <a href=\"example.com\">Example</a>",
6161
converter.convert("see", "<a href=\"example.com\">Example</a>", context2));
6262
}
6363

0 commit comments

Comments
 (0)