Skip to content

Commit b72e31c

Browse files
committed
Fix a typo on test
1 parent 457ade0 commit b72e31c

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/test/java/com/fasterxml/jackson/dataformat/xml/failing/JsonAppend508Test.java renamed to src/test/java/com/fasterxml/jackson/dataformat/xml/failing/JsonAppend578Test.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@
1111
import com.fasterxml.jackson.dataformat.xml.XmlMapper;
1212
import com.fasterxml.jackson.dataformat.xml.XmlTestBase;
1313

14-
public class JsonAppend508Test extends XmlTestBase
14+
public class JsonAppend578Test extends XmlTestBase
1515
{
16-
// [dataformat-xml#508]: Duplication of virtual properties
16+
// [dataformat-xml#578]: Duplication of virtual properties
1717
@JsonAppend(props = @JsonAppend.Prop(name = "virtual", value = MyVirtualPropertyWriter.class))
18-
public static class Pojo508 {
18+
public static class Pojo578 {
1919
private final String name;
2020

21-
public Pojo508(String name) {
21+
public Pojo578(String name) {
2222
this.name = name;
2323
}
2424
public String getName() {
@@ -50,9 +50,9 @@ public VirtualBeanPropertyWriter withConfig(MapperConfig<?> config, AnnotatedCla
5050

5151
private final XmlMapper MAPPER = newMapper();
5252

53-
// [dataformat-xml#508]: Duplication of virtual properties
53+
// [dataformat-xml#578]: Duplication of virtual properties
5454
public void testJsonAppend() throws Exception {
55-
String xml = MAPPER.writeValueAsString(new Pojo508("foo"));
55+
String xml = MAPPER.writeValueAsString(new Pojo578("foo"));
5656
assertEquals("<Pojo><name>foo</name><virtual>bar</virtual></Pojo>",xml);
5757
}
5858
}

0 commit comments

Comments
 (0)