From 9c0b4ee8ec38942c57d0e98c00456a9caf82172e Mon Sep 17 00:00:00 2001 From: Christian Beikov Date: Thu, 17 Aug 2023 12:07:22 +0200 Subject: [PATCH] Increase timeout for some tests even further --- .../hibernate/orm/test/locking/jpa/FollowOnLockingTest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hibernate-core/src/test/java/org/hibernate/orm/test/locking/jpa/FollowOnLockingTest.java b/hibernate-core/src/test/java/org/hibernate/orm/test/locking/jpa/FollowOnLockingTest.java index 64b4cd618a..ef40279346 100644 --- a/hibernate-core/src/test/java/org/hibernate/orm/test/locking/jpa/FollowOnLockingTest.java +++ b/hibernate-core/src/test/java/org/hibernate/orm/test/locking/jpa/FollowOnLockingTest.java @@ -42,12 +42,12 @@ import static org.hibernate.jpa.SpecHints.HINT_SPEC_QUERY_TIMEOUT; public class FollowOnLockingTest { @Test - @Timeout(value = 1, unit = TimeUnit.MINUTES) + @Timeout(value = 2, unit = TimeUnit.MINUTES) public void testQueryLockingWithoutFollowOn(SessionFactoryScope scope) { testQueryLocking( scope, false ); } @Test - @Timeout(value = 1, unit = TimeUnit.MINUTES) + @Timeout(value = 2, unit = TimeUnit.MINUTES) public void testQueryLockingWithFollowOn(SessionFactoryScope scope) { testQueryLocking( scope, true ); }