From d7e6aa0db899f634ee1259c04bc4a61d9a76b816 Mon Sep 17 00:00:00 2001 From: James Graham Date: Thu, 23 Mar 2017 18:19:45 +0000 Subject: [PATCH] Bug 1318724 - Increase the HTTP connection timeout for WebDriver tests, r=ato The 5s timeout was not enough for debug builds. I don't really see a reason to use something other than the default socket timeout here. MozReview-Commit-ID: Fm5lgSI3lFb --- .../web-platform/tests/tools/webdriver/webdriver/transport.py | 1 + 1 file changed, 1 insertion(+) diff --git a/testing/web-platform/tests/tools/webdriver/webdriver/transport.py b/testing/web-platform/tests/tools/webdriver/webdriver/transport.py index de58d85690f7..a2412643e04f 100644 --- a/testing/web-platform/tests/tools/webdriver/webdriver/transport.py +++ b/testing/web-platform/tests/tools/webdriver/webdriver/transport.py @@ -41,6 +41,7 @@ class Response(object): return cls(status, body) + class HTTPWireProtocol(object): """Transports messages (commands and responses) over the WebDriver wire protocol.