| Index: Tools/Scripts/webkitpy/layout_tests/models/test_run_results.py
|
| diff --git a/Tools/Scripts/webkitpy/layout_tests/models/test_run_results.py b/Tools/Scripts/webkitpy/layout_tests/models/test_run_results.py
|
| index 6ace3ebe0c56fdf57110b1951501281c139f7fe4..b5ae2dd78becf879ea9991536fd380c3a3dbbd63 100644
|
| --- a/Tools/Scripts/webkitpy/layout_tests/models/test_run_results.py
|
| +++ b/Tools/Scripts/webkitpy/layout_tests/models/test_run_results.py
|
| @@ -147,9 +147,6 @@ def summarize_results(port_obj, expectations, initial_results, retry_results, en
|
| for expecation_string, expectation_enum in test_expectations.TestExpectations.EXPECTATIONS.iteritems():
|
| keywords[expectation_enum] = expecation_string.upper()
|
|
|
| - for modifier_string, modifier_enum in test_expectations.TestExpectations.MODIFIERS.iteritems():
|
| - keywords[modifier_enum] = modifier_string.upper()
|
| -
|
| num_failures_by_type = {}
|
| for expectation in initial_results.tests_by_expectation:
|
| num_failures_by_type[keywords[expectation]] = len(initial_results.tests_by_expectation[expectation] & tbt[test_expectations.NOW])
|
|
|