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

Unified Diff: tools/telemetry/telemetry/core/environment.py

Issue 659673002: telemetry: Remove PageTest support from benchmark_runner (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix comment Created 6 years, 2 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
« no previous file with comments | « tools/telemetry/telemetry/benchmark_runner.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/telemetry/telemetry/core/environment.py
diff --git a/tools/telemetry/telemetry/core/environment.py b/tools/telemetry/telemetry/core/environment.py
index 04bafc8ed2aa26d79baedf7404f98c2d451ce2e3..3900682284d0a3ab8aa5f00ea542dd8021cd1c1e 100644
--- a/tools/telemetry/telemetry/core/environment.py
+++ b/tools/telemetry/telemetry/core/environment.py
@@ -4,17 +4,17 @@
class Environment(object):
- def __init__(self, base_paths, test_aliases=None):
+ def __init__(self, base_paths, benchmark_aliases=None):
self._base_paths = base_paths
- if test_aliases:
- self._test_aliases = test_aliases
+ if benchmark_aliases:
+ self._benchmark_aliases = benchmark_aliases
else:
- self._test_aliases = {}
+ self._benchmark_aliases = {}
@property
def base_paths(self):
return self._base_paths
@property
- def test_aliases(self):
- return self._test_aliases
+ def benchmark_aliases(self):
+ return self._benchmark_aliases
« no previous file with comments | « tools/telemetry/telemetry/benchmark_runner.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698