Skip to content

Commit 5e95beb

Browse files
simonwuelkerservo-wpt-sync
authored andcommitted
Forward kwargs to NullBrowser constructor
Signed-off-by: Simon Wülker <simon.wuelker@arcor.de>
1 parent ef8345d commit 5e95beb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • tools/wptrunner/wptrunner/browsers

tools/wptrunner/wptrunner/browsers/servo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def update_properties():
7474
class ServoBrowser(NullBrowser):
7575
def __init__(self, logger, binary, debug_info=None, binary_args=None,
7676
user_stylesheets=None, ca_certificate_path=None, **kwargs):
77-
NullBrowser.__init__(self, logger)
77+
NullBrowser.__init__(self, logger, **kwargs)
7878
self.binary = binary
7979
self.debug_info = debug_info
8080
self.binary_args = binary_args or []

0 commit comments

Comments
 (0)