summaryrefslogtreecommitdiff
path: root/chromium/third_party/catapult/common/py_utils/py_utils/discover.py
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/catapult/common/py_utils/py_utils/discover.py')
-rw-r--r--chromium/third_party/catapult/common/py_utils/py_utils/discover.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/chromium/third_party/catapult/common/py_utils/py_utils/discover.py b/chromium/third_party/catapult/common/py_utils/py_utils/discover.py
index ae8ba87d9fc..a9333e2d7dd 100644
--- a/chromium/third_party/catapult/common/py_utils/py_utils/discover.py
+++ b/chromium/third_party/catapult/common/py_utils/py_utils/discover.py
@@ -101,20 +101,18 @@ def DiscoverClasses(start_dir,
for module in modules:
new_classes = DiscoverClassesInModule(
module, base_class, index_by_class_name, directly_constructable)
- # TODO(nednguyen): we should remove index_by_class_name once
+ # TODO(crbug.com/548652): we should remove index_by_class_name once
# benchmark_smoke_unittest in chromium/src/tools/perf no longer relied
# naming collisions to reduce the number of smoked benchmark tests.
- # crbug.com/548652
if index_by_class_name:
AssertNoKeyConflicts(classes, new_classes)
classes = dict(list(classes.items()) + list(new_classes.items()))
return classes
-# TODO(nednguyen): we should remove index_by_class_name once
+# TODO(crbug.com/548652): we should remove index_by_class_name once
# benchmark_smoke_unittest in chromium/src/tools/perf no longer relied
# naming collisions to reduce the number of smoked benchmark tests.
-# crbug.com/548652
def DiscoverClassesInModule(module,
base_class,
index_by_class_name=False,