Skip to content

Commit

Permalink
Merge pull request #67 from w3c/unexpected_total
Browse files Browse the repository at this point in the history
Return whether unexpected_total is zero in run_tests.
  • Loading branch information
jgraham committed Jan 13, 2015
2 parents 03fd01d + 016edfa commit 53837d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wptrunner/wptrunner.py
Original file line number Diff line number Diff line change
Expand Up @@ -482,7 +482,7 @@ def run_tests(config, serve_root, test_paths, product, **kwargs):
logging_thread.join(10)
logging_queue.close()

return manager_group.unexpected_count() == 0
return unexpected_total == 0


def main():
Expand Down

0 comments on commit 53837d5

Please sign in to comment.