Bug 1405325 - Fix webdriver.transport.HTTPWireProtocol#url. r=maja_zf draft
authorAndreas Tolfsen <ato@sny.no>
Tue, 03 Oct 2017 16:19:36 +0100
changeset 677229 f325199389d31a3fc39985bad494f43b37f6fd41
parent 677228 c8c5979529935e5bd2b3496d7946f4d8ac6c23cb
child 677230 0293877da491cffa836fae776a284936058e7692
push id83730
push userbmo:ato@sny.no
push dateTue, 10 Oct 2017 11:48:50 +0000
reviewersmaja_zf
bugs1405325
milestone58.0a1
Bug 1405325 - Fix webdriver.transport.HTTPWireProtocol#url. r=maja_zf The self.path_prefix attribute does not exist. It should be self.url_prefix. MozReview-Commit-ID: 8LGES8GsTsm
testing/web-platform/tests/tools/webdriver/webdriver/transport.py
--- a/testing/web-platform/tests/tools/webdriver/webdriver/transport.py
+++ b/testing/web-platform/tests/tools/webdriver/webdriver/transport.py
@@ -58,17 +58,17 @@ class HTTPWireProtocol(object):
 
         self.host = host
         self.port = port
         self.url_prefix = url_prefix
 
         self._timeout = timeout
 
     def url(self, suffix):
-        return urlparse.urljoin(self.path_prefix, suffix)
+        return urlparse.urljoin(self.url_prefix, suffix)
 
     def send(self, method, url, body=None, headers=None):
         """Send a command to the remote.
 
         :param method: "POST" or "GET".
         :param url: "command part" of the requests URL path
         :param body: Body of the request.  Defaults to an empty dictionary
             if ``method`` is "POST".