File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
datetime/src/test/java/com/fasterxml/jackson/datatype/jsr310/deser Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -32,13 +32,13 @@ public Wrapper() { }
3232 @ Test
3333 public void testDeserializationAsString01_oneBased () throws Exception
3434 {
35- assertEquals (Month .JANUARY , readerForOneBased ().readValue ("\" 01 \" " ));
35+ assertEquals (Month .JANUARY , readerForOneBased ().readValue ("\" 1 \" " ));
3636 }
3737
3838 @ Test
3939 public void testDeserializationAsString01_zeroBased () throws Exception
4040 {
41- assertEquals (Month .FEBRUARY , readerForZeroBased ().readValue ("\" 01 \" " ));
41+ assertEquals (Month .FEBRUARY , readerForZeroBased ().readValue ("\" 1 \" " ));
4242 }
4343
4444
@@ -93,13 +93,13 @@ public void testDeserialization01_oneBased() throws Exception
9393 @ Test
9494 public void testDeserialization02_zeroBased () throws Exception
9595 {
96- assertEquals (Month .SEPTEMBER , readerForZeroBased ().readValue ("\" 08 \" " ));
96+ assertEquals (Month .SEPTEMBER , readerForZeroBased ().readValue ("\" 8 \" " ));
9797 }
9898
9999 @ Test
100100 public void testDeserialization02_oneBased () throws Exception
101101 {
102- assertEquals (Month .AUGUST , readerForOneBased ().readValue ("\" 08 \" " ));
102+ assertEquals (Month .AUGUST , readerForOneBased ().readValue ("\" 8 \" " ));
103103 }
104104
105105 @ Test
You can’t perform that action at this time.
0 commit comments