Skip to content

Commit 8f548af

Browse files
committed
Fix test
1 parent b18193a commit 8f548af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/de/zalando/typemapper/postgres/PgSerializerTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public static Collection<Object[]> generateData() throws SQLException {
6262
new Object[][] {
6363
{new Date(112, 11, 1, 6, 6, 6), Pattern.compile("2012-12-01 06:06:06[+-]?\\d{2}")},
6464
{new Date(112, 9, 1, 6, 6, 6), Pattern.compile("2012-10-01 06:06:06[+-]?\\d{2}")},
65-
{Date.from(DateTimeFormatter.ISO_OFFSET_DATE_TIME.parse("2017-05-14T12:34:56.123456789+00:00", Instant::from)), Pattern.compile("2017-05-14 14:34:56.123000[+-]?\\d{2}")},
65+
{Date.from(DateTimeFormatter.ISO_OFFSET_DATE_TIME.parse("2017-05-14T12:34:56.123456789+02:00", Instant::from)), Pattern.compile("2017-05-14 12:34:56.123000[+-]?\\d{2}")},
6666
{1, "1"},
6767
{69, "69"},
6868
{true, "t"},

0 commit comments

Comments
 (0)