Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(193)

Unified Diff: tools/telemetry/telemetry/util/find_dependencies.py

Issue 337603005: Rename telemetry.test.Test to telemetry.benchmark.Benchmark. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: tools/telemetry/telemetry/util/find_dependencies.py
diff --git a/tools/telemetry/telemetry/util/find_dependencies.py b/tools/telemetry/telemetry/util/find_dependencies.py
index 3f2e7e486a0d7feb978988978d0b25e38ccacece..398bc427b6db2472812226cbaf76a0dfbf19c6b6 100644
--- a/tools/telemetry/telemetry/util/find_dependencies.py
+++ b/tools/telemetry/telemetry/util/find_dependencies.py
@@ -11,7 +11,7 @@ import os
import sys
import zipfile
-from telemetry import test
+from telemetry import benchmark
from telemetry.core import command_line
from telemetry.core import discover
from telemetry.core import util
@@ -70,7 +70,7 @@ def FindPageSetDependencies(base_dir):
# Add base_dir to path so our imports relative to base_dir will work.
sys.path.append(base_dir)
- tests = discover.DiscoverClasses(base_dir, base_dir, test.Test,
+ tests = discover.DiscoverClasses(base_dir, base_dir, benchmark.Benchmark,
index_by_class_name=True)
for test_class in tests.itervalues():
« no previous file with comments | « tools/telemetry/telemetry/test_runner.py ('k') | tools/telemetry/telemetry/web_perf/timeline_based_measurement_unittest.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698