Skip to content

Commit

Permalink
Update getopts
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonSapin authored and Servo WPT Sync committed Aug 24, 2018
1 parent 0594f4e commit a3c7c19
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 a3c7c19

Please sign in to comment.