Skip to content

Commit

Permalink
Move formerly failing tests (wrt #491, #538) as non-failing
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder committed Sep 7, 2022
1 parent 0cea5b0 commit 35fecfa
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.fasterxml.jackson.dataformat.xml.failing;
package com.fasterxml.jackson.dataformat.xml.deser.creator;

import com.fasterxml.jackson.annotation.*;

Expand Down Expand Up @@ -29,7 +29,7 @@
*</ul>
* Either approach could work, although former could cause other kinds of regression.
*/
public class Issue491NoArgCtorDeserRegressionTest extends XmlTestBase
public class NoArgCtorDeser491Test extends XmlTestBase
{
@JsonTypeInfo(
use = JsonTypeInfo.Id.NAME,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.fasterxml.jackson.dataformat.xml.failing;
package com.fasterxml.jackson.dataformat.xml.deser.creator;

import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;
Expand All @@ -8,7 +8,7 @@
import com.fasterxml.jackson.databind.exc.MismatchedInputException;
import com.fasterxml.jackson.dataformat.xml.*;

public class PojoWithRequired538Test extends XmlTestBase
public class PojoWithCreatorRequired538Test extends XmlTestBase
{
@JsonRootName(value = "bar")
static class Bar538
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import com.fasterxml.jackson.dataformat.xml.XmlMapper;
import com.fasterxml.jackson.dataformat.xml.XmlTestBase;

public class MapDeserialization498Test extends XmlTestBase
public class MapWithDupsDeser498Test extends XmlTestBase
{
/*
/**********************************************************************
Expand Down

0 comments on commit 35fecfa

Please sign in to comment.