Skip to content

Commit

Permalink
Merge branch '2.12'
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder committed Jun 9, 2020
2 parents 4f49262 + bbbf41f commit 0debe99
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.fasterxml.jackson.databind.deser;
package com.fasterxml.jackson.databind.convert;

import java.util.*;

Expand All @@ -8,7 +8,7 @@
import com.fasterxml.jackson.databind.cfg.CoercionAction;
import com.fasterxml.jackson.databind.cfg.CoercionInputShape;

public class MiscCoercionTest extends BaseMapTest
public class CoerceContainersTest extends BaseMapTest
{
private final String JSON_EMPTY = quote("");

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.fasterxml.jackson.databind.struct;
package com.fasterxml.jackson.databind.convert;

import java.io.ByteArrayInputStream;
import java.io.IOException;
Expand All @@ -11,7 +11,7 @@
import com.fasterxml.jackson.databind.*;
import com.fasterxml.jackson.databind.exc.MismatchedInputException;

public class ScalarCoercionTest extends BaseMapTest
public class CoerceJDKScalarsTest extends BaseMapTest
{
static class BooleanPOJO {
public boolean value;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,18 +1,17 @@
package com.fasterxml.jackson.databind.deser;
package com.fasterxml.jackson.databind.convert;

import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.*;
import com.fasterxml.jackson.databind.cfg.CoercionAction;
import com.fasterxml.jackson.databind.cfg.CoercionInputShape;
import com.fasterxml.jackson.databind.type.LogicalType;

public class BeanCoercionTest extends BaseMapTest
public class CoercePojosTest extends BaseMapTest
{
static class Bean {
public String a;
}


private final ObjectMapper MAPPER = newJsonMapper();

private final String JSON_EMPTY = quote("");
Expand Down

0 comments on commit 0debe99

Please sign in to comment.