diff options
author | Valery Piashchynski <[email protected]> | 2020-11-27 10:00:40 +0300 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2020-11-27 10:00:40 +0300 |
commit | 849a03b8ead6fe8e65ab1a1e5653a57c12502dd1 (patch) | |
tree | 902afaca9b225cfe9e3b498b97cc83dec13fcd9a /plugins/http/tests/http_test.go | |
parent | fa9a7e319b5ac6d98fd18d1e4986de35fde254e5 (diff) |
Increase time for middleware test
Diffstat (limited to 'plugins/http/tests/http_test.go')
-rw-r--r-- | plugins/http/tests/http_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/http/tests/http_test.go b/plugins/http/tests/http_test.go index 451566ca..ed98d17e 100644 --- a/plugins/http/tests/http_test.go +++ b/plugins/http/tests/http_test.go @@ -811,7 +811,7 @@ func TestHttpMiddleware(t *testing.T) { wg.Add(1) go func() { - tt := time.NewTimer(time.Second * 10) + tt := time.NewTimer(time.Second * 15) defer wg.Done() for { select { |