File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/test/java/tools/jackson/databind/deser/jdk Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -440,7 +440,7 @@ public void testValueUpdateCustomUntyped() throws Exception
440440 map .put ("a" , 42 );
441441
442442 ObjectReader r = customMapper .readerFor (Object .class ).withValueToUpdate (map );
443- Object result = r .readValue (a2q ("{'b' : 'value', 'c' : 111222333444, 'enabled':true}" ));
443+ Object result = r .readValue (a2q ("{'b': 'value', 'c': 111222333444, 'enabled': true}" ));
444444 assertSame (map , result );
445445 assertEquals (4 , map .size ());
446446 assertEquals ("VALUE" , map .get ("b" ));
@@ -477,7 +477,7 @@ public void testObjectSerializeWithLong() throws IOException
477477 // works fine as node
478478 JsonNode deserialized = mapper .readTree (serialized );
479479 assertEquals (VALUE , deserialized .get ("timestamp" ).asLong ());
480- // and actually should work in Maps too
480+ // and actually should work for Maps too
481481 Map <?,?> deserMap = mapper .readValue (serialized , Map .class );
482482 Number n = (Number ) deserMap .get ("timestamp" );
483483 assertNotNull (n );
You can’t perform that action at this time.
0 commit comments