From f6ac8b5d321fff908446c72a8546643f53e7c277 Mon Sep 17 00:00:00 2001 From: Norman Maurer Date: Thu, 8 Dec 2016 10:28:34 +0100 Subject: [PATCH] [#6114] Increase test timeout for test introduced in c2f4daa7398a9363fde8e51bf52c0d0323f870a5 Motivation: c2f4daa7398a9363fde8e51bf52c0d0323f870a5 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. --- .../src/test/java/io/netty/util/ResourceLeakDetectorTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/src/test/java/io/netty/util/ResourceLeakDetectorTest.java b/common/src/test/java/io/netty/util/ResourceLeakDetectorTest.java index d35bd19577..f3894a5767 100644 --- a/common/src/test/java/io/netty/util/ResourceLeakDetectorTest.java +++ b/common/src/test/java/io/netty/util/ResourceLeakDetectorTest.java @@ -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 error = new AtomicReference();