Increase timeout for some tests even further

This commit is contained in:
Christian Beikov 2023-08-17 12:07:22 +02:00
parent d08087fbbf
commit 5e31e808e8
1 changed files with 2 additions and 2 deletions

View File

@ -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 );
}