Skip to content

Commit

Permalink
GitHub action test fix
Browse files Browse the repository at this point in the history
  • Loading branch information
zubri committed Jan 8, 2025
1 parent 48a6067 commit fa9f148
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ public void testMarshallNoOffset() throws Exception {
DateTimeFormatter dateTimeFormatter = DateTimeFormatter.ofPattern("HH:mm:ss[.SSS][XXX]");
ZoneOffset offset = ZoneId.systemDefault().getRules().getOffset(Instant.now());
OffsetTime offsetTime = LocalTime.parse("12:50:08", dateTimeFormatter).atOffset(offset);
assertEquals("12:50:08" + offset, adapter.marshal(offsetTime));
assertEquals("12:50:08" + systemOffset(), adapter.marshal(offsetTime));
}

@Test
Expand Down

0 comments on commit fa9f148

Please sign in to comment.