| Index: third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/test_expectations.py
|
| diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/test_expectations.py b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/test_expectations.py
|
| index fcaf50b03b19485242c2a000f6611fd926a9b785..343eb475d65e78da60bf87192b84b457616ed6b3 100644
|
| --- a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/test_expectations.py
|
| +++ b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/test_expectations.py
|
| @@ -488,7 +488,7 @@ class TestExpectationLine(object):
|
| result.is_skipped_outside_expectations_file = line1.is_skipped_outside_expectations_file or line2.is_skipped_outside_expectations_file
|
| return result
|
|
|
| - def to_string(self, test_configuration_converter, include_specifiers=True, include_expectations=True, include_comment=True):
|
| + def to_string(self, test_configuration_converter=None, include_specifiers=True, include_expectations=True, include_comment=True):
|
| parsed_expectation_to_string = dict([[parsed_expectation, expectation_string]
|
| for expectation_string, parsed_expectation in TestExpectations.EXPECTATIONS.items()])
|
|
|
| @@ -1037,6 +1037,9 @@ class TestExpectations(object):
|
| def model(self):
|
| return self._model
|
|
|
| + def expectations(self):
|
| + return self._expectations
|
| +
|
| def get_needs_rebaseline_failures(self):
|
| return self._model.get_test_set(NEEDS_REBASELINE)
|
|
|
|
|