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

Unified Diff: tools/chrome_proxy/integration_tests/chrome_proxy_pagesets/lo_fi.py

Issue 1218073014: Migrate from telemetry PageSet -> StorySet. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address review comments and rebase Created 5 years, 5 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/chrome_proxy/integration_tests/chrome_proxy_pagesets/lo_fi.py
diff --git a/tools/chrome_proxy/integration_tests/chrome_proxy_pagesets/lo_fi.py b/tools/chrome_proxy/integration_tests/chrome_proxy_pagesets/lo_fi.py
index 0fd578d964550816790a74b954eed92acc6d5224..fbc1eaa8264e68955ab9af97251c46e12537d10b 100644
--- a/tools/chrome_proxy/integration_tests/chrome_proxy_pagesets/lo_fi.py
+++ b/tools/chrome_proxy/integration_tests/chrome_proxy_pagesets/lo_fi.py
@@ -3,7 +3,7 @@
# found in the LICENSE file.
from telemetry.page import page as page_module
-from telemetry.page import page_set as page_set_module
+from telemetry import story
class LoFiPage(page_module.Page):
@@ -16,15 +16,15 @@ class LoFiPage(page_module.Page):
super(LoFiPage, self).__init__(url=url, page_set=page_set)
-class LoFiPageSet(page_set_module.PageSet):
+class LoFiStorySet(story.StorySet):
""" Chrome proxy test sites """
def __init__(self):
- super(LoFiPageSet, self).__init__()
+ super(LoFiStorySet, self).__init__()
urls_list = [
'http://check.googlezip.net/image.png',
]
for url in urls_list:
- self.AddUserStory(LoFiPage(url, self))
+ self.AddStory(LoFiPage(url, self))

Powered by Google App Engine
This is Rietveld 408576698