Skip to content

Commit

Permalink
(fix a minor regression from previous check-in)
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder committed Jun 12, 2020
1 parent a25fbce commit a9f52ae
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -690,7 +690,7 @@ public void testEmptyStringFailForBooleanPrimitive() throws IOException
reader.readValue(aposToQuotes("{'booleanValue':''}"));
fail("Expected failure for boolean + empty String");
} catch (JsonMappingException e) {
verifyException(e, "Cannot map `null` into type");
verifyException(e, "Cannot coerce `null` to `boolean`");
verifyException(e, "FAIL_ON_NULL_FOR_PRIMITIVES");
}
}
Expand Down

0 comments on commit a9f52ae

Please sign in to comment.