Skip to content

Commit

Permalink
Minor test fix: force use of JsonMapper, not plain ObjectMapper (…
Browse files Browse the repository at this point in the history
…only relevant wrt JDK serializability)
  • Loading branch information
cowtowncoder committed May 24, 2020
1 parent 74d744a commit cc1dd92
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ protected ObjectReader objectReader(Class<?> cls) {

// @since 2.10
protected static ObjectMapper newJsonMapper() {
return new ObjectMapper();
return new JsonMapper();
}

// @since 2.10
Expand Down

0 comments on commit cc1dd92

Please sign in to comment.