| Index: third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/test_failures.py
|
| diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/test_failures.py b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/test_failures.py
|
| index 7b5fc84eb9a97ed4f0b472bbb457122152bd4997..37de000cf722033414784b2b6426c7c4c76ee2d2 100644
|
| --- a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/test_failures.py
|
| +++ b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/test_failures.py
|
| @@ -33,7 +33,8 @@ from webkitpy.layout_tests.models import test_expectations
|
|
|
| def is_reftest_failure(failure_list):
|
| failure_types = [type(f) for f in failure_list]
|
| - return set((FailureReftestMismatch, FailureReftestMismatchDidNotOccur, FailureReftestNoImagesGenerated)).intersection(failure_types)
|
| + return set((FailureReftestMismatch, FailureReftestMismatchDidNotOccur, FailureReftestNoImagesGenerated)).intersection(
|
| + failure_types)
|
|
|
| # FIXME: This is backwards. Each TestFailure subclass should know what
|
| # test_expectation type it corresponds too. Then this method just
|
| @@ -85,6 +86,7 @@ def determine_result_type(failure_list):
|
|
|
|
|
| class TestFailure(object):
|
| +
|
| """Abstract base class that defines the failure interface."""
|
|
|
| @staticmethod
|
|
|