Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@ def _create_async_grpc_client(
transport = transport_cls(credentials=credentials, channel=channel)

return storage_v2.StorageAsyncClient(
credentials=credentials,
transport=transport,
client_info=client_info,
client_options=client_options,
Expand Down
1 change: 0 additions & 1 deletion tests/unit/asyncio/test_async_grpc_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ def test_constructor_default_options(self, mock_async_storage_client):
)
mock_transport = mock_transport_cls.return_value
mock_async_storage_client.assert_called_once_with(
credentials=mock_creds,
transport=mock_transport,
client_options=None,
client_info=None,
Expand Down