From 0c129dc694d42184addba13202aeeaf5a2e58b35 Mon Sep 17 00:00:00 2001 From: Peter Edge Date: Mon, 14 Aug 2017 15:22:33 -0400 Subject: [PATCH] Increase test timeout from 100ms to 500ms --- cmux_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmux_test.go b/cmux_test.go index 32221ed..bb919af 100644 --- a/cmux_test.go +++ b/cmux_test.go @@ -253,7 +253,7 @@ func TestTimeout(t *testing.T) { lis, Close := testListener(t) defer Close() result := make(chan int, 5) - testDuration := time.Millisecond * 100 + testDuration := time.Millisecond * 500 m := New(lis) m.SetReadTimeout(testDuration) http1 := m.Match(HTTP1Fast())