From 54e311ca202d9adf04a21905e7abd0e6bef5c73b Mon Sep 17 00:00:00 2001 From: Dov Shlachter Date: Wed, 29 Dec 2021 10:11:47 -0800 Subject: [PATCH] tweaks --- tests/system/conftest.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/tests/system/conftest.py b/tests/system/conftest.py index 000240b808..fd92e72bc8 100644 --- a/tests/system/conftest.py +++ b/tests/system/conftest.py @@ -107,10 +107,14 @@ def construct_client( else: transport_cls = client_class.get_transport_class(transport_name) if transport_name in ["grpc", "grpc_asyncio"]: - transport = transport_cls(channel=channel_creator("localhost:7469")) + transport = transport_cls( + channel=channel_creator("localhost:7469"), + ) elif transport_name == "rest": # The custom host explicitly bypasses https. - transport = transport_cls(host="http://localhost:7469") + transport = transport_cls( + host="http://localhost:7469", + ) else: raise RuntimeError(f"Unexpected transport type: {transport_name}")