Skip to content

Commit 0580def

Browse files
fix cherry-pick
1 parent f5df6d1 commit 0580def

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

jaxb-annox-parent/jaxb-annox/src/test/java/org/jvnet/jaxb/annox/parser/tests/XAnnotationParserTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ public void testN() throws Exception {
283283

284284
System.out.println(one.toString());
285285
System.out.println(two.toString());
286-
Assertions.assertEquals(one, two, "Annotations should be identical.");
286+
Assert.assertEquals("Annotations should be identical.", one, two);
287287
}
288288

289289
@Test
@@ -300,7 +300,7 @@ public void testO() throws Exception {
300300

301301
System.out.println(one.toString());
302302
System.out.println(two.toString());
303-
Assertions.assertEquals(one, two, "Annotations should be identical.");
303+
Assert.assertEquals("Annotations should be identical.", one, two);
304304

305305
}
306306
}

0 commit comments

Comments
 (0)