Adjust timeout to account for poor Travis performance

This commit is contained in:
Kovid Goyal 2016-06-28 06:52:34 +05:30
parent e994215f67
commit f6ecae9c80

View File

@ -81,7 +81,7 @@ class TestHTTP(BaseTest):
def handler(data):
return data.lang_code + data._('Unknown')
with TestServer(handler, timeout=0.1) as server:
with TestServer(handler, timeout=0.3) as server:
conn = server.connect()
def test(al, q):