Index: tools/chrome_proxy/integration_tests/chrome_proxy_pagesets/synthetic.py |
diff --git a/tools/chrome_proxy/integration_tests/chrome_proxy_pagesets/synthetic.py b/tools/chrome_proxy/integration_tests/chrome_proxy_pagesets/synthetic.py |
index 3fef221a855270b3fd6e1d5051910a5ad1f2d3a0..2840d9a3bd3ee53dab46a9baa0bcc7836987cd99 100644 |
--- a/tools/chrome_proxy/integration_tests/chrome_proxy_pagesets/synthetic.py |
+++ b/tools/chrome_proxy/integration_tests/chrome_proxy_pagesets/synthetic.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 SyntheticPage(page_module.Page): |
@@ -12,12 +12,12 @@ class SyntheticPage(page_module.Page): |
super(SyntheticPage, self).__init__(url=url, page_set=page_set) |
-class SyntheticPageSet(page_set_module.PageSet): |
+class SyntheticStorySet(story.StorySet): |
""" Chrome proxy synthetic test pages. """ |
def __init__(self): |
- super(SyntheticPageSet, self).__init__() |
+ super(SyntheticStorySet, self).__init__() |
urls_list = [ |
'http://check.googlezip.net/test.html', |
@@ -25,4 +25,4 @@ class SyntheticPageSet(page_set_module.PageSet): |
] |
for url in urls_list: |
- self.AddUserStory(SyntheticPage(url, self)) |
+ self.AddStory(SyntheticPage(url, self)) |