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

Unified Diff: tools/telemetry/telemetry/core/chrome/inspector_page_unittest.py

Issue 12813013: [Telemetry] Cause web server to keep resources in memory and thread requests. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address nduca comments Created 7 years, 9 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/telemetry/telemetry/core/chrome/inspector_page_unittest.py
diff --git a/tools/telemetry/telemetry/core/chrome/inspector_page_unittest.py b/tools/telemetry/telemetry/core/chrome/inspector_page_unittest.py
index 762ddc20e11d41717ee67b279b78c1fc5b5ce1b1..32917fd9482683c3a2975ff51bd2715c4d844218 100644
--- a/tools/telemetry/telemetry/core/chrome/inspector_page_unittest.py
+++ b/tools/telemetry/telemetry/core/chrome/inspector_page_unittest.py
@@ -26,7 +26,7 @@ class InspectorPageTest(tab_test_case.TabTestCase):
def testCustomActionToNavigate(self):
unittest_data_dir = os.path.join(os.path.dirname(__file__),
'..', '..', '..', 'unittest_data')
- self._browser.SetHTTPServerDirectory(unittest_data_dir)
+ self._browser.SetHTTPServerDirectories(unittest_data_dir)
self._tab.Navigate(
self._browser.http_server.UrlOf('page_with_link.html'))
self._tab.WaitForDocumentReadyStateToBeComplete()
@@ -49,7 +49,7 @@ class InspectorPageTest(tab_test_case.TabTestCase):
def testGetCookieByName(self):
unittest_data_dir = os.path.join(os.path.dirname(__file__),
'..', '..', '..', 'unittest_data')
- self._browser.SetHTTPServerDirectory(unittest_data_dir)
+ self._browser.SetHTTPServerDirectories(unittest_data_dir)
self._tab.Navigate(
self._browser.http_server.UrlOf('blank.html'))
self._tab.WaitForDocumentReadyStateToBeComplete()

Powered by Google App Engine
This is Rietveld 408576698