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

Unified Diff: tools/perf/page_sets/tough_filters_cases.py

Issue 2488013002: Truncating tough_filters_cases name (Closed)
Patch Set: Created 4 years, 1 month 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/perf/page_sets/tough_filters_cases.py
diff --git a/tools/perf/page_sets/tough_filters_cases.py b/tools/perf/page_sets/tough_filters_cases.py
index fd00eaf7450a36043216c0f6d1300c41ba0b71d8..36b41276f978fd885a469080728a2436376dbc63 100644
--- a/tools/perf/page_sets/tough_filters_cases.py
+++ b/tools/perf/page_sets/tough_filters_cases.py
@@ -7,6 +7,12 @@ from telemetry import story
class ToughFiltersCasesPage(page_module.Page):
+ def __init__(self, url, page_set):
+ # Truncate the url to be the name, see crbug.com/662941
+ name = url[:100]
+ super(ToughFiltersCasesPage, self).__init__(
+ url=url, page_set=page_set, name=name)
+
def RunPageInteractions(self, action_runner):
with action_runner.CreateInteraction('Filter'):
action_runner.Wait(10)
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698