We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a5ff14 commit 306fdbfCopy full SHA for 306fdbf
src/test/java/com/fasterxml/jackson/dataformat/xml/misc/XmlTextTest.java
@@ -1,6 +1,5 @@
1
package com.fasterxml.jackson.dataformat.xml.misc;
2
3
-import org.junit.Assert;
4
import org.junit.jupiter.api.Test;
5
6
import com.fasterxml.jackson.annotation.JsonInclude.Include;
@@ -101,6 +100,6 @@ public void testSimple198() throws Exception
101
100
public void testRawValue() throws Exception
102
{
103
String xml = MAPPER.writeValueAsString(new RawValue());
104
- Assert.assertEquals("<RawValue><a>b</a></RawValue>", xml);
+ assertEquals("<RawValue><a>b</a></RawValue>", xml);
105
}
106
0 commit comments