[#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:
parent
42fca7a2fb
commit
f6ac8b5d32
@ -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>();
|
||||
|
Loading…
Reference in New Issue
Block a user