Skip to content

Commit 88bc7e4

Browse files
committed
Fix copy miss
wrt 93e1a21
1 parent b8a3559 commit 88bc7e4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/com/fasterxml/jackson/databind/deser/jdk/CollectionDeserializer5139Test.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public void nullsFailTest() {
4141
@Test
4242
public void nullsSkipTest() throws Exception {
4343
ObjectMapper mapper = JsonMapper.builder()
44-
.defaultSetterInfo(JsonSetter.Value.forContentNulls(Nulls.FAIL))
44+
.defaultSetterInfo(JsonSetter.Value.forContentNulls(Nulls.SKIP))
4545
.build();
4646

4747
Dst dst = mapper.readValue("{\"list\":[\"\"]}", new TypeReference<Dst>() {});

0 commit comments

Comments
 (0)