| Index: Tools/Scripts/webkitpy/layout_tests/models/test_configuration.py
|
| diff --git a/Tools/Scripts/webkitpy/layout_tests/models/test_configuration.py b/Tools/Scripts/webkitpy/layout_tests/models/test_configuration.py
|
| index 49b36e4ecff35aaf3a1c72f836ce29fa755b62a8..2527c8f1eae4a2e4f297dc3760b079d1cf958387 100644
|
| --- a/Tools/Scripts/webkitpy/layout_tests/models/test_configuration.py
|
| +++ b/Tools/Scripts/webkitpy/layout_tests/models/test_configuration.py
|
| @@ -157,7 +157,7 @@ class TestConfigurationConverter(object):
|
| configurations = self._specifier_to_configuration_set.get(expanded_specifier)
|
| if not configurations:
|
| if error_list is not None:
|
| - error_list.append("Unrecognized modifier '" + expanded_specifier + "'")
|
| + error_list.append("Unrecognized specifier '" + expanded_specifier + "'")
|
| return set()
|
| category = self._specifier_sorter.category_for_specifier(expanded_specifier)
|
| matching_sets.setdefault(category, set()).update(configurations)
|
| @@ -233,7 +233,7 @@ class TestConfigurationConverter(object):
|
|
|
| def to_specifiers_list(self, test_configuration_set):
|
| """Convert a set of TestConfiguration instances into one or more list of specifiers."""
|
| - # Easy out: if the set is all configurations, the modifier is empty.
|
| + # Easy out: if the set is all configurations, the specifier is empty.
|
| if len(test_configuration_set) == len(self._all_test_configurations):
|
| return [[]]
|
|
|
|
|