| Index: tools/chrome_proxy/integration_tests/chrome_proxy_pagesets/pass_through.py
|
| diff --git a/tools/chrome_proxy/integration_tests/chrome_proxy_pagesets/pass_through.py b/tools/chrome_proxy/integration_tests/chrome_proxy_pagesets/pass_through.py
|
| index f55bbfbfb2127c7997767b05a2dc9e816e8ebd89..259dc70f11b5c5f9a12faa91b400c5290d75ca5c 100644
|
| --- a/tools/chrome_proxy/integration_tests/chrome_proxy_pagesets/pass_through.py
|
| +++ b/tools/chrome_proxy/integration_tests/chrome_proxy_pagesets/pass_through.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 PassThroughPage(page_module.Page):
|
| """
|
| @@ -25,15 +25,15 @@ class PassThroughPage(page_module.Page):
|
| action_runner.Wait(1)
|
|
|
|
|
| -class PassThroughPageSet(page_set_module.PageSet):
|
| +class PassThroughStorySet(story.StorySet):
|
| """ Chrome proxy test sites """
|
|
|
| def __init__(self):
|
| - super(PassThroughPageSet, self).__init__()
|
| + super(PassThroughStorySet, self).__init__()
|
|
|
| urls_list = [
|
| 'http://check.googlezip.net/image.png',
|
| ]
|
|
|
| for url in urls_list:
|
| - self.AddUserStory(PassThroughPage(url, self))
|
| + self.AddStory(PassThroughPage(url, self))
|
|
|