Skip to content

Commit 33c8b11

Browse files
committed
Fixing the type for the unit test
Signed-off-by: Ryan Lettieri <ryanLettieri@microsoft.com>
1 parent b39ffad commit 33c8b11

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
HOST_ADDRESS = 'localhost:50051'
88
METADATA = [('key1', 'value1'), ('key2', 'value2')]
9-
INTERCEPTORS = DefaultClientInterceptorImpl(METADATA)
9+
INTERCEPTORS = [DefaultClientInterceptorImpl(METADATA)]
1010

1111
def test_get_grpc_channel_insecure():
1212
with patch('grpc.insecure_channel') as mock_channel:

0 commit comments

Comments
 (0)