aboutsummaryrefslogtreecommitdiff
path: root/src/test/java/com/fasterxml/jackson
diff options
context:
space:
mode:
authorTatu Saloranta <tatu.saloranta@iki.fi>2020-07-02 15:19:43 -0700
committerTatu Saloranta <tatu.saloranta@iki.fi>2020-07-02 15:19:43 -0700
commitca417a16753fe626814ba1b41195ebe990e9051c (patch)
treeaee6bdb8653bb01c1d6db1e7fb7b3889b3d5ab59 /src/test/java/com/fasterxml/jackson
parentd16b8b1e0c70707ec294e4b0515ac316491ac24e (diff)
downloadjackson-databind-ca417a16753fe626814ba1b41195ebe990e9051c.tar.gz
Fix first part of #2783 (parser initialization)
Diffstat (limited to 'src/test/java/com/fasterxml/jackson')
-rw-r--r--src/test/java/com/fasterxml/jackson/databind/ObjectReaderTest.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/java/com/fasterxml/jackson/databind/ObjectReaderTest.java b/src/test/java/com/fasterxml/jackson/databind/ObjectReaderTest.java
index 794ee0366..13559a934 100644
--- a/src/test/java/com/fasterxml/jackson/databind/ObjectReaderTest.java
+++ b/src/test/java/com/fasterxml/jackson/databind/ObjectReaderTest.java
@@ -286,7 +286,7 @@ public class ObjectReaderTest extends BaseMapTest
assertEquals(MAPPER.constructType(String.class), r.getValueType());
}
- public void testParserConfigViaMapper() throws Exception
+ public void testParserConfigViaReader() throws Exception
{
try (JsonParser p = MAPPER.reader()
.with(StreamReadFeature.STRICT_DUPLICATE_DETECTION)
@@ -301,7 +301,7 @@ public class ObjectReaderTest extends BaseMapTest
}
}
- public void testGeneratorConfigViaMapper() throws Exception
+ public void testGeneratorConfigViaReader() throws Exception
{
StringWriter sw = new StringWriter();
try (JsonGenerator g = MAPPER.writer()