From 4955df5e6d363887c43dcc34e4e2f393ebd60c1e Mon Sep 17 00:00:00 2001 From: Simon Brandhof Date: Thu, 4 Aug 2016 10:35:54 +0200 Subject: [PATCH] Improve stability of RestartTest JUnit timeout is too small when testing on DBs in QA environment. --- it/it-tests/src/test/java/it/serverSystem/RestartTest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/it/it-tests/src/test/java/it/serverSystem/RestartTest.java b/it/it-tests/src/test/java/it/serverSystem/RestartTest.java index c87afb3c00c..964aaabf8f4 100644 --- a/it/it-tests/src/test/java/it/serverSystem/RestartTest.java +++ b/it/it-tests/src/test/java/it/serverSystem/RestartTest.java @@ -46,9 +46,9 @@ public class RestartTest { @Rule public ExpectedException thrown = ExpectedException.none(); - @Rule - public TestRule globalTimeout = new DisableOnDebug(Timeout.seconds(120)); + @Rule + public TestRule globalTimeout = new DisableOnDebug(Timeout.seconds(300L)); @After public void stop() { -- 2.39.5