Fix customJodaDateTimeFormat to specify time zone when creating Date
See gh-3569
This commit is contained in:
parent
68af0a73ec
commit
1e4c972c3d
|
@ -144,7 +144,7 @@ public class JacksonAutoConfigurationTests {
|
|||
ObjectMapper mapper = this.context.getBean(ObjectMapper.class);
|
||||
DateTime dateTime = new DateTime(1988, 6, 25, 20, 30, DateTimeZone.UTC);
|
||||
assertEquals("\"1988-06-25 20:30:00\"", mapper.writeValueAsString(dateTime));
|
||||
Date date = new DateTime(1988, 6, 25, 20, 30).toDate();
|
||||
Date date = dateTime.toDate();
|
||||
assertEquals("\"19880625203000\"", mapper.writeValueAsString(date));
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue