| Index: tools/telemetry/telemetry/unittest/json_results.py
|
| diff --git a/tools/telemetry/telemetry/unittest/json_results.py b/tools/telemetry/telemetry/unittest/json_results.py
|
| index 76a5c28ccb09f61186f309449376cacf0b419ac1..facf5aad3485f13cfc5e293c62ca372bf625f76a 100644
|
| --- a/tools/telemetry/telemetry/unittest/json_results.py
|
| +++ b/tools/telemetry/telemetry/unittest/json_results.py
|
| @@ -6,6 +6,7 @@ import json
|
| import time
|
| import unittest
|
|
|
| +
|
| # TODO(dpranke): This code is largely cloned from, and redundant with,
|
| # src/mojo/tools/run_mojo_python_tests.py, and also duplicates logic
|
| # in test-webkitpy and run-webkit-tests. We should consolidate the
|
| @@ -104,5 +105,3 @@ def _AddPathToTrie(trie, path, value):
|
| if directory not in trie:
|
| trie[directory] = {}
|
| _AddPathToTrie(trie[directory], rest, value)
|
| -
|
| -
|
|
|