Skip to content

Commit

Permalink
Fix regression in Servo webdriver executor.
Browse files Browse the repository at this point in the history
  • Loading branch information
jdm committed Nov 28, 2019
1 parent 5ba6840 commit 81b4110
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/wptrunner/wptrunner/executors/executorservodriver.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ def set_timeout(self):

def run_func(self):
try:
self.result = True, self.func(self.session, self.url, self.timeout)
self.result = True, self.func(self.protocol.session, self.url, self.timeout)
except webdriver.TimeoutException:
self.result = False, ("EXTERNAL-TIMEOUT", None)
except (socket.timeout, IOError):
Expand Down Expand Up @@ -183,7 +183,7 @@ def do_test(self, test):

success, data = ServoWebDriverRun(self.logger,
self.do_testharness,
self.protocol.session,
self.protocol,
url,
timeout,
self.extra_timeout).run()
Expand Down

2 comments on commit 81b4110

@community-tc-integration
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Submitting the task to Taskcluster failed. Details

InterpreterError at template.tasks: object has no property after

@community-tc-integration
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Submitting the task to Taskcluster failed. Details

InterpreterError at template.tasks: object has no property after

Please sign in to comment.