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

Unified Diff: tools/telemetry/telemetry/multi_page_benchmark_unittest_base.py

Issue 12088107: Revert 180117, it broke all telemetry tests. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 11 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/multi_page_benchmark_unittest.py ('k') | tools/telemetry/telemetry/page.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/telemetry/telemetry/multi_page_benchmark_unittest_base.py
===================================================================
--- tools/telemetry/telemetry/multi_page_benchmark_unittest_base.py (revision 180130)
+++ tools/telemetry/telemetry/multi_page_benchmark_unittest_base.py (working copy)
@@ -21,9 +21,9 @@
def CreatePageSet(self, test_filename):
base_dir = os.path.dirname(__file__)
- ps = page_set.PageSet(file_path=os.path.join(base_dir, 'foo.json'))
- page = page_module.Page(test_filename, ps, base_dir=base_dir)
+ page = page_module.Page(test_filename, base_dir=base_dir)
setattr(page, 'smoothness', {'action': 'scrolling_action'})
+ ps = page_set.PageSet(base_dir=base_dir)
ps.pages.append(page)
return ps
« no previous file with comments | « tools/telemetry/telemetry/multi_page_benchmark_unittest.py ('k') | tools/telemetry/telemetry/page.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698