Skip to content

Commit 74b03e6

Browse files
committed
very important cosmetic change
Signed-off-by: Olivier Lamy <[email protected]>
1 parent b258587 commit 74b03e6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/java/org/apache/maven/plugins/javadoc/JavadocUtilTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -686,12 +686,12 @@ public void testQuotedArgument() throws Exception {
686686
String value = " org.apache.uima.analysis_component:\n org.apache.uima.analysis_engine\n";
687687

688688
String arg = JavadocUtil.quotedArgument(value);
689-
assertThat(arg).isEqualTo("'org.apache.uima.analysis_component:org.apache.uima.analysis_engine'");
689+
assertEquals("'org.apache.uima.analysis_component:org.apache.uima.analysis_engine'", arg);
690690

691691
value = "org.apache.uima.analysis_component:org.apache.uima.analysis_engine";
692692

693693
arg = JavadocUtil.quotedArgument(value);
694-
assertThat(arg).isEqualTo("'org.apache.uima.analysis_component:org.apache.uima.analysis_engine'");
694+
assertEquals("'org.apache.uima.analysis_component:org.apache.uima.analysis_engine'", arg);
695695
}
696696

697697
public void testToList() throws Exception {

0 commit comments

Comments
 (0)