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

Unified Diff: appengine/swarming/swarming_bot/bot_code/bot_main_test.py

Issue 2969513002: Add a default Isolate gRPC proxy in config (Closed)
Patch Set: Add a default Isolate gRPC proxy in config Created 3 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
Index: appengine/swarming/swarming_bot/bot_code/bot_main_test.py
diff --git a/appengine/swarming/swarming_bot/bot_code/bot_main_test.py b/appengine/swarming/swarming_bot/bot_code/bot_main_test.py
index f38909679ae367466cc9575bb103c5f75aa79049..08a9bdbf58c05f71342e6fca2a20a0159e139f62 100755
--- a/appengine/swarming/swarming_bot/bot_code/bot_main_test.py
+++ b/appengine/swarming/swarming_bot/bot_code/bot_main_test.py
@@ -310,7 +310,7 @@ class TestBotMain(TestBotBase):
self.mock(logging, 'error', lambda *_, **_kw: None)
self.mock(
bot_main, 'get_config',
- lambda: {'server': self.url, 'server_version': '1', 'is_grpc': False})
+ lambda: {'server': self.url, 'server_version': '1'})
expected_attribs = bot_main.get_attributes(None)
self.expected_requests(
[
@@ -406,7 +406,6 @@ class TestBotMain(TestBotBase):
bot_main, 'get_config',
lambda: {
'enable_ts_monitoring': False,
- 'is_grpc': False,
'server': self.url,
'server_version': '1',
})

Powered by Google App Engine
This is Rietveld 408576698