Skip to content

Commit

Permalink
Merge pull request web-platform-tests#12681 from web-platform-tests/s…
Browse files Browse the repository at this point in the history
…ync_91f298a913836e46d27482e189ce25475298196c

Merge pull request web-platform-tests#12681 from sync_91f298a913836e46d27482e189ce25475298196c
  • Loading branch information
servo-wpt-sync authored Aug 24, 2018
2 parents d8eb186 + 91f298a commit 5895ad2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tools/wptrunner/wptrunner/browsers/servodriver.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ def start(self, **kwargs):
self.binary,
self.binary_args + [
"--hard-fail",
"--webdriver", str(self.webdriver_port),
"--webdriver=%s" % self.webdriver_port,
"about:blank",
],
self.debug_info
Expand Down
2 changes: 1 addition & 1 deletion tools/wptrunner/wptrunner/webdriver_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ def __init__(self, logger, binary="servo", binary_args=None, host="127.0.0.1",

def make_command(self):
command = [self.binary,
"--webdriver", str(self.port),
"--webdriver=%s" % self.port,
"--hard-fail",
"--headless"] + self._args
if self.binary_args:
Expand Down

0 comments on commit 5895ad2

Please sign in to comment.