From 2637b802c86b2497cc5ebe388ddc55f3e7b6bbe9 Mon Sep 17 00:00:00 2001 From: Matt Layher Date: Fri, 6 Dec 2019 09:25:19 -0500 Subject: [PATCH] netlink: bump integration test timeout Signed-off-by: Matt Layher --- conn_linux_gteq_1.12_integration_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conn_linux_gteq_1.12_integration_test.go b/conn_linux_gteq_1.12_integration_test.go index c93d9f7..f5e8761 100644 --- a/conn_linux_gteq_1.12_integration_test.go +++ b/conn_linux_gteq_1.12_integration_test.go @@ -39,7 +39,7 @@ func TestIntegrationConnTimeout(t *testing.T) { select { case err := <-errC: mustBeTimeoutNetError(t, err) - case <-time.After(timeout + 1*time.Millisecond): + case <-time.After(timeout + 100*time.Millisecond): t.Fatalf("timeout did not fire") } }