Skip to content

Commit 306fdbf

Browse files
committed
Remove one last (?) JUnit 4 reference
1 parent 5a5ff14 commit 306fdbf

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/test/java/com/fasterxml/jackson/dataformat/xml/misc/XmlTextTest.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
package com.fasterxml.jackson.dataformat.xml.misc;
22

3-
import org.junit.Assert;
43
import org.junit.jupiter.api.Test;
54

65
import com.fasterxml.jackson.annotation.JsonInclude.Include;
@@ -101,6 +100,6 @@ public void testSimple198() throws Exception
101100
public void testRawValue() throws Exception
102101
{
103102
String xml = MAPPER.writeValueAsString(new RawValue());
104-
Assert.assertEquals("<RawValue><a>b</a></RawValue>", xml);
103+
assertEquals("<RawValue><a>b</a></RawValue>", xml);
105104
}
106105
}

0 commit comments

Comments
 (0)