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

Unified Diff: tools/telemetry/telemetry/page/gtest_test_results.py

Issue 287773002: [telemetry] Make testMeasurementSmoke generate separate tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix @Disabled Created 6 years, 7 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/perf/measurements/measurement_unittest.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/page/gtest_test_results.py
diff --git a/tools/telemetry/telemetry/page/gtest_test_results.py b/tools/telemetry/telemetry/page/gtest_test_results.py
index f70866c7894b122e47ce5ce5260f234fc330a584..ada547431f7add11125b99ba9629e1e51da1d7ba 100644
--- a/tools/telemetry/telemetry/page/gtest_test_results.py
+++ b/tools/telemetry/telemetry/page/gtest_test_results.py
@@ -24,7 +24,7 @@ class GTestTestResults(page_test_results.PageTestResults):
@staticmethod
def _formatTestname(test):
if isinstance(test, unittest.TestCase):
- chunks = test.id().split('.')[-2:]
+ chunks = test.id().split('.')[2:]
return '.'.join(chunks)
else:
return str(test)
« no previous file with comments | « tools/perf/measurements/measurement_unittest.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698