This is an automated email from the ASF dual-hosted git repository. solomax pushed a commit to branch solomax/java-time-tests in repository https://gitbox.apache.org/repos/asf/openjpa.git
commit e185cc00528532312c4b3915f7da2a0d6d6adda4 Author: Maxim Solodovnik <[email protected]> AuthorDate: Thu Jul 10 10:32:37 2025 +0700 Fixing Java8TimeTypes at the CI --- .../org/apache/openjpa/persistence/simple/TestJava8TimeTypes.java | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/openjpa-persistence-jdbc/src/test/java/org/apache/openjpa/persistence/simple/TestJava8TimeTypes.java b/openjpa-persistence-jdbc/src/test/java/org/apache/openjpa/persistence/simple/TestJava8TimeTypes.java index 222fb27b2..07f4e774b 100644 --- a/openjpa-persistence-jdbc/src/test/java/org/apache/openjpa/persistence/simple/TestJava8TimeTypes.java +++ b/openjpa-persistence-jdbc/src/test/java/org/apache/openjpa/persistence/simple/TestJava8TimeTypes.java @@ -180,9 +180,9 @@ public class TestJava8TimeTypes extends SingleEMFTestCase { EntityManager em = emf.createEntityManager(); final TypedQuery<LocalTime> qry = em.createQuery("select min(t.localTimeField) from Java8TimeTypes AS t", LocalTime.class); final LocalTime min = qry.getSingleResult(); - final LocalTime etalon = (entity1.getLocalTimeField().compareTo(entity2.getLocalTimeField()) < 0 - ? entity1.getLocalTimeField() : entity2.getLocalTimeField()).withNano(0); - assertEquals(etalon, min); + final LocalTime etalon = entity1.getLocalTimeField().compareTo(entity2.getLocalTimeField()) < 0 + ? entity1.getLocalTimeField() : entity2.getLocalTimeField(); + assertEquals(etalon.withNano(0), min.withNano(0)); em.close(); } @@ -259,10 +259,8 @@ public class TestJava8TimeTypes extends SingleEMFTestCase { final TypedQuery<Java8TimeTypes> qry = em.createQuery("select j from Java8TimeTypes AS j where j.localTimeField < LOCAL TIME", Java8TimeTypes.class); final List<Java8TimeTypes> times = qry.getResultList(); -System.err.println(times); assertNotNull(times); assertFalse(times.isEmpty()); em.close(); } - }
