From 2c83abee49c3c6d970f0f17524089ffd4f9a7462 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 23 Jun 2017 00:07:59 +0530 Subject: [PATCH] ... --- src/calibre/srv/tests/http.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/srv/tests/http.py b/src/calibre/srv/tests/http.py index f547221a7b..a2f0371f66 100644 --- a/src/calibre/srv/tests/http.py +++ b/src/calibre/srv/tests/http.py @@ -296,7 +296,7 @@ class TestHTTP(BaseTest): # Test timeout server.loop.opts.timeout = 0.1 - conn = server.connect() + conn = server.connect(timeout=1) conn.request('GET', '/something') r = conn.getresponse() self.ae(r.status, 200), self.ae(r.read(), 'something')