Index: tools/chrome_proxy/integration_tests/chrome_proxy_pagesets/smoke.py |
diff --git a/tools/chrome_proxy/integration_tests/chrome_proxy_pagesets/smoke.py b/tools/chrome_proxy/integration_tests/chrome_proxy_pagesets/smoke.py |
index 6b11d44652f4844a1b576141bb520cb77df4c3e6..9419b52fdd8c265405089a667e2b5819d77cf516 100644 |
--- a/tools/chrome_proxy/integration_tests/chrome_proxy_pagesets/smoke.py |
+++ b/tools/chrome_proxy/integration_tests/chrome_proxy_pagesets/smoke.py |
@@ -79,22 +79,6 @@ class Page5(SmokePage): |
name='compression: css') |
-class Page6(SmokePage): |
- |
- """ |
- Why: Expect 'malware ahead' page. Use a short navigation timeout because no |
- response will be received. |
- """ |
- |
- def __init__(self, page_set): |
- super(Page6, self).__init__( |
- url='http://www.ianfette.org/', |
- page_set=page_set, |
- name='safebrowsing') |
- |
- def RunNavigateSteps(self, action_runner): |
- action_runner.NavigateToPage(self, timeout_in_seconds=5) |
- |
class SmokePageSet(page_set_module.PageSet): |
@@ -109,4 +93,3 @@ class SmokePageSet(page_set_module.PageSet): |
self.AddUserStory(Page3(self)) |
self.AddUserStory(Page4(self)) |
self.AddUserStory(Page5(self)) |
- self.AddUserStory(Page6(self)) |