Skip to content

Commit 2533175

Browse files
fix tests
1 parent 7a9956a commit 2533175

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

maven-plugin-plugin/src/it/help-basic-deprecated-annotation-only/expected-help.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ help-deprecated-annotation-only:test
66

77
MOJO-DESCRIPTION. Some "quotation" marks and backslashes '\\', some important
88
javadoc
9-
and an inline link to test.AnotherMojo.
9+
and an inline link to test.AnotherMojo .
1010

1111
Available parameters:
1212

maven-plugin-plugin/src/it/help-basic-jdk11/expected-help.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ help-jdk11:test
66

77
MOJO-DESCRIPTION. Some "quotation" marks and backslashes '\\', some important
88
javadoc
9-
and an inline link to test.AnotherMojo.
9+
and an inline link to test.AnotherMojo .
1010

1111
Available parameters:
1212

maven-plugin-plugin/src/it/help-basic/expected-help.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ help:test
66

77
MOJO-DESCRIPTION. Some "quotation" marks and backslashes '\\', some important
88
javadoc
9-
and an inline link to test.AnotherMojo.
9+
and an inline link to test.AnotherMojo .
1010

1111
Available parameters:
1212

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)