| 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 b4465d3be288f5cf163a29021cc6647428df0313..7271780a3442c9437935e2aeef61f5d8723deb59 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
|
| @@ -127,7 +127,7 @@ class TestExpectationParser(object):
|
|
|
| def expectation_for_skipped_test(self, test_name):
|
| if not self._port.test_exists(test_name):
|
| - _log.warning('The following test %s from the Skipped list doesn\'t exist' % test_name)
|
| + _log.warning('The following test %s from the Skipped list doesn\'t exist', test_name)
|
| expectation_line = self._create_expectation_line(test_name, [TestExpectationParser.PASS_EXPECTATION], '<Skipped file>')
|
| expectation_line.expectations = [TestExpectationParser.SKIP_MODIFIER, TestExpectationParser.WONTFIX_MODIFIER]
|
| expectation_line.is_skipped_outside_expectations_file = True
|
|
|