Skip to content

Commit f59dfa2

Browse files
committed
Minor test fix
1 parent f787e88 commit f59dfa2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/java/tools/jackson/databind/tofix/NoTypeInfo1654Test.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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());

0 commit comments

Comments
 (0)