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

Unified Diff: telemetry/telemetry/testing/serially_executed_browser_test_case.py

Issue 2335403003: Reland of "[telemetry] Wire TsProxy through telemetry's network stack." (Closed) Base URL: https://github.com/catapult-project/catapult.git@master
Patch Set: Created 4 years, 3 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 | « telemetry/telemetry/testing/fakes/__init__.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: telemetry/telemetry/testing/serially_executed_browser_test_case.py
diff --git a/telemetry/telemetry/testing/serially_executed_browser_test_case.py b/telemetry/telemetry/testing/serially_executed_browser_test_case.py
index 75bf2002e911d73b1354fcfa621eb1a6d25bf773..4799a96b3d81b9b2f839fc0ee2220ee3a3f0cec0 100644
--- a/telemetry/telemetry/testing/serially_executed_browser_test_case.py
+++ b/telemetry/telemetry/testing/serially_executed_browser_test_case.py
@@ -46,7 +46,6 @@
cls._browser_to_create = browser_finder.FindBrowser(browser_options)
if not cls.platform:
cls.platform = cls._browser_to_create.platform
- cls.platform.network_controller.InitializeIfNeeded()
else:
assert cls.platform == cls._browser_to_create.platform, (
'All browser launches within same test suite must use browsers on '
@@ -93,7 +92,6 @@
def tearDownClass(cls):
if cls.platform:
cls.platform.StopAllLocalServers()
- cls.platform.network_controller.Close()
if cls.browser:
cls.StopBrowser()
« no previous file with comments | « telemetry/telemetry/testing/fakes/__init__.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698