Skip to content

Commit

Permalink
A couple small fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mrobinson committed Aug 18, 2023
1 parent d9fcc49 commit e206d3b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion tests/wpt/meta/MANIFEST.json
Expand Up @@ -465041,7 +465041,7 @@
[]
],
"executorservo.py": [
"0d22471e90e83fbfd80010001e8c60f509af8902",
"3250c74ff4397d229e370a8c317b0e2a269dc9a8",
[]
],
"executorservodriver.py": [
Expand Down
Expand Up @@ -276,7 +276,7 @@ def do_test(self, test):

return self.convert_result(test, result)

def on_output(line):
def on_output(self, line):
line = line.decode("utf8", "replace")
if self.interactive:
print(line)
Expand Down Expand Up @@ -345,12 +345,12 @@ def do_crashtest(self, protocol, url, timeout):
env["RUST_BACKTRACE"] = "1"

self.command = build_servo_command(self.test,
self.test_url,
self.browser,
self.binary,
False,
self.debug_info,
extra_args=["-x"])
self.test_url,
self.browser,
self.binary,
False,
self.debug_info,
extra_args=["-x"])

if not self.interactive:
self.proc = ProcessHandler(self.command,
Expand Down

0 comments on commit e206d3b

Please sign in to comment.