[#6114] Increase test timeout for test introduced in c2f4daa739

Motivation:

c2f4daa739 added a unit test but used a too small test timeout.

Modifications:

Increase timeout.

Result:

Test should have enough time to complete on the CI.
This commit is contained in:
Norman Maurer 2016-12-08 10:28:34 +01:00
parent 42fca7a2fb
commit f6ac8b5d32

View File

@ -25,7 +25,7 @@ import java.util.concurrent.atomic.AtomicReference;
public class ResourceLeakDetectorTest {
@Test(timeout = 30000)
@Test(timeout = 60000)
public void testConcurentUsage() throws Throwable {
final AtomicBoolean finished = new AtomicBoolean();
final AtomicReference<Throwable> error = new AtomicReference<Throwable>();