File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/test/java/tools/jackson/databind/tofix Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -84,7 +84,7 @@ void noTypeInfoOverrideSer() throws Exception {
8484 new Value1654 (3 ),
8585 new Value1654 (7 )
8686 );
87- assertEquals (a2q ("{'values':[{'x':3},{'x': 7}] }" ),
87+ assertEquals (a2q ("{'values':[{'x':3},{'x':7}]}" ),
8888 MAPPER .writeValueAsString (cont ));
8989 }
9090
@@ -94,7 +94,7 @@ void noTypeInfoOverrideSer() throws Exception {
9494 void noTypeInfoOverrideDeser () throws Exception {
9595 // and then actual failing case
9696 final String noTypeJson = a2q (
97- "{'values':[{'x':3},{'x': 7}] }"
97+ "{'values':[{'x':3},{'x':7}]}"
9898 );
9999 Value1654UntypedContainer unResult = MAPPER .readValue (noTypeJson , Value1654UntypedContainer .class );
100100 assertEquals (2 , unResult .values .size ());
You can’t perform that action at this time.
0 commit comments