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

Unified Diff: client/tests/swarming_test.py

Issue 2037253002: run_isolated.py: install CIPD packages (Closed) Base URL: https://chromium.googlesource.com/external/github.com/luci/luci-py@master
Patch Set: fix client fetching Created 4 years, 6 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 | « client/tests/subprocess42_test.py ('k') | client/utils/file_path.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/tests/swarming_test.py
diff --git a/client/tests/swarming_test.py b/client/tests/swarming_test.py
index b7d7adb263fc5797d69483689380890f7bec076b..8996b72207d5e55540cfea552cd9b4a9261ae600 100755
--- a/client/tests/swarming_test.py
+++ b/client/tests/swarming_test.py
@@ -32,6 +32,7 @@ from utils import file_path
from utils import logging_utils
from utils import tools
+import httpserver_mock
import isolateserver_mock
@@ -155,7 +156,7 @@ class NonBlockingEvent(threading._Event): # pylint: disable=W0212
return super(NonBlockingEvent, self).wait(0)
-class SwarmingServerHandler(isolateserver_mock.MockHandler):
+class SwarmingServerHandler(httpserver_mock.MockHandler):
"""An extremely minimal implementation of the swarming server API v1.0."""
def do_GET(self):
@@ -183,7 +184,7 @@ class SwarmingServerHandler(isolateserver_mock.MockHandler):
raise NotImplementedError(self.path)
-class MockSwarmingServer(isolateserver_mock.MockServer):
+class MockSwarmingServer(httpserver_mock.MockServer):
_HANDLER_CLS = SwarmingServerHandler
def __init__(self):
« no previous file with comments | « client/tests/subprocess42_test.py ('k') | client/utils/file_path.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698