Skip to content

Commit

Permalink
Fix ServoDriver is_alive method
Browse files Browse the repository at this point in the history
Update MANIFEST.json
  • Loading branch information
shanavas786 committed Jan 14, 2019
1 parent 2a78625 commit 78c2781
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion tests/wpt/metadata/MANIFEST.json
Expand Up @@ -674942,7 +674942,7 @@
"support"
],
"tools/wptrunner/wptrunner/browsers/servodriver.py": [
"0a63a32c96699a441ce696bae6b8d32f4d69bc3d",
"75cee5abb68a67ebf624be28294a635ce5790cba",
"support"
],
"tools/wptrunner/wptrunner/browsers/webkit.py": [
Expand Down
Expand Up @@ -166,9 +166,7 @@ def on_output(self, line):
command=" ".join(self.command))

def is_alive(self):
if self.runner:
return self.runner.is_running()
return False
return self.proc.poll() is None

def cleanup(self):
self.stop()
Expand Down

0 comments on commit 78c2781

Please sign in to comment.