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

--HG--
extra : rebase_source : a59f92070a6f35acda166836528704d03248c48c
This commit is contained in:
Andreas Tolfsen 2017-10-03 16:19:36 +01:00
Родитель 29339a1cb1
Коммит 1f920edde6
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -63,7 +63,7 @@ class HTTPWireProtocol(object):
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.