We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ecf0c7 commit ccd1cabCopy full SHA for ccd1cab
blitline-image-client/src/test/java/com/blitline/image/BlitlinePostbackTest.java
@@ -8,6 +8,7 @@
8
9
import java.io.IOException;
10
import java.util.Date;
11
+import java.util.TimeZone;
12
13
import org.junit.BeforeClass;
14
import org.junit.Test;
@@ -29,6 +30,7 @@ public static void createMapper() {
29
30
mapper.enable(SerializationFeature.WRAP_ROOT_VALUE);
31
mapper.enable(DeserializationFeature.UNWRAP_ROOT_VALUE);
32
mapper.setDateFormat(BlitlinePostback.BLITLINE_DATE_FORMAT);
33
+ mapper.setTimeZone(TimeZone.getTimeZone("America/Chicago"));
34
}
35
36
public static final String SUCCESS_POSTBACK_CONTENT = "{\"results\":"
0 commit comments