Skip to content

Commit 2bb770b

Browse files
committed
fix a tiny problem with a failing test
1 parent cc478a2 commit 2bb770b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/com/fasterxml/jackson/failing/ReadWriteOnlyProp935Test.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ public void testReadOnlyAndWriteOnly() throws Exception
6565

6666
ReadXWriteY result = MAPPER.readValue("{\"x\":5, \"y\":6}", ReadXWriteY.class);
6767
assertNotNull(result);
68-
assertEquals(0, result.x);
68+
assertEquals(1, result.x);
6969
assertEquals(6, result.y);
7070
}
7171

0 commit comments

Comments
 (0)