Skip to content

Commit eec3a2e

Browse files
authored
removed first assert check (#930)
1 parent dfa8894 commit eec3a2e

File tree

1 file changed

+1
-2
lines changed
  • hibernate-reactive-core/src/test/java/org/hibernate/reactive

1 file changed

+1
-2
lines changed

hibernate-reactive-core/src/test/java/org/hibernate/reactive/UTCTest.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,9 +115,8 @@ public void testOffsetDateTime(TestContext context) {
115115
"offsetDateTimeType",
116116
thing::getOffsetDateTime,
117117
entity -> {
118-
context.assertEquals( entity.offsetDateTime.getOffset(), ZoneOffset.UTC );
119118
context.assertEquals( thing.offsetDateTime,
120-
entity.offsetDateTime.toInstant().atZone( zoneOffset ).toOffsetDateTime() );
119+
entity.offsetDateTime.toInstant().atZone( zoneOffset ).toOffsetDateTime() );
121120
}
122121
);
123122
}

0 commit comments

Comments
 (0)