Skip to content

Commit fd64513

Browse files
committed
minor test code refactoring
1 parent 7749b6f commit fd64513

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/test/java/com/fasterxml/jackson/dataformat/xml/failing/Issue97Test.java renamed to src/test/java/com/fasterxml/jackson/dataformat/xml/failing/PolymorphicList97Test.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
/**
1616
* @author pgelinas
1717
*/
18-
public class Issue97Test extends XmlTestBase
18+
public class PolymorphicList97Test extends XmlTestBase
1919
{
2020
@JsonTypeInfo(property = "type", use = Id.NAME)
2121
public static abstract class Foo {

src/test/java/com/fasterxml/jackson/dataformat/xml/failing/TestDeserialization.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ private static class EmptyStrings
1515

1616
private final XmlMapper MAPPER = new XmlMapper();
1717

18-
// [Issue#25]
18+
// [dataformat-xml#25]
1919
public void testEmptyStringFromElemAndAttr() throws Exception
2020
{
2121
EmptyStrings ob = MAPPER.readValue("<EmptyString a=''><b /></EmptyString>",

src/test/java/com/fasterxml/jackson/dataformat/xml/failing/TestUntypedListSerialization.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public TypedListBean() {
4545
private final XmlMapper MAPPER = new XmlMapper();
4646

4747
/*
48-
* For [Issue#8] -- Will not use wrapping, if type is not statically known
48+
* For [dataformat-xml#8] -- Will not use wrapping, if type is not statically known
4949
* to be a Collection
5050
*/
5151
public void testListAsObject() throws IOException

0 commit comments

Comments
 (0)