Index: test/mozilla/testcfg.py |
diff --git a/test/mozilla/testcfg.py b/test/mozilla/testcfg.py |
index 5739391102fc3abae1aec474c2cc45e1255a863b..0eb32c87bd13f5400703c7be23d72ea31c9798bd 100644 |
--- a/test/mozilla/testcfg.py |
+++ b/test/mozilla/testcfg.py |
@@ -107,10 +107,10 @@ class MozillaTestSuite(testsuite.TestSuite): |
def IsNegativeTest(self, testcase): |
return testcase.path.endswith("-n") |
- def IsFailureOutput(self, output, testpath): |
- if output.exit_code != 0: |
+ def IsFailureOutput(self, testcase): |
+ if testcase.output.exit_code != 0: |
return True |
- return "FAILED!" in output.stdout |
+ return "FAILED!" in testcase.output.stdout |
def DownloadData(self): |
print "Mozilla download is deprecated. It's part of DEPS." |