@@ -26,7 +26,7 @@ def _make_credentials(spec=None):
2626class TestAsyncGrpcClient (unittest .TestCase ):
2727 @mock .patch ("google.cloud._storage_v2.StorageAsyncClient" )
2828 def test_constructor_default_options (self , mock_async_storage_client ):
29- from google .cloud .storage ._experimental import async_grpc_client
29+ from google .cloud .storage ._experimental . asyncio import async_grpc_client
3030
3131 mock_transport_cls = mock .MagicMock ()
3232 mock_async_storage_client .get_transport_class .return_value = mock_transport_cls
@@ -54,7 +54,7 @@ def test_constructor_default_options(self, mock_async_storage_client):
5454
5555 @mock .patch ("google.cloud._storage_v2.StorageAsyncClient" )
5656 def test_constructor_disables_directpath (self , mock_async_storage_client ):
57- from google .cloud .storage ._experimental import async_grpc_client
57+ from google .cloud .storage ._experimental . asyncio import async_grpc_client
5858
5959 mock_transport_cls = mock .MagicMock ()
6060 mock_async_storage_client .get_transport_class .return_value = mock_transport_cls
@@ -74,7 +74,7 @@ def test_constructor_disables_directpath(self, mock_async_storage_client):
7474
7575 @mock .patch ("google.cloud._storage_v2.StorageAsyncClient" )
7676 def test_grpc_client_property (self , mock_async_storage_client ):
77- from google .cloud .storage ._experimental import async_grpc_client
77+ from google .cloud .storage ._experimental . asyncio import async_grpc_client
7878
7979 mock_creds = _make_credentials ()
8080
0 commit comments