Bug 1478172 [wpt PR 12170] - [wptrunner] Fix regression in Sauce Labs browser, a=testonly

Automatic update from web-platform-tests[wptrunner] Fix regression in Sauce Labs browser

A recent commit [1] updated the invocation of the `start` method for
"Browser" instances by introducing a new keyword argument. This
interfered with the use of the "Sauce Labs" browser because its
implementation of the `start` method did not accommodate any keyword
arguments.

Update the `start` method to support (but ignore) all keyword arguments.

[1] 91803e3a25afd8e0c201bc57cd05fffd5d543551

--

wpt-commits: addfa0d8e05da60dbc24f0f9affe2e3841ad33f6
wpt-pr: 12170
This commit is contained in:
Mike Pennisi 2018-07-30 14:55:42 +00:00 коммит произвёл moz-wptsync-bot
Родитель 3710b84b17
Коммит 076704ead4
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -233,7 +233,7 @@ class SauceBrowser(Browser):
Browser.__init__(self, logger)
self.sauce_config = sauce_config
def start(self):
def start(self, **kwargs):
pass
def stop(self, force=False):