Skip to content
This repository was archived by the owner on Mar 31, 2026. It is now read-only.

Commit aca40f5

Browse files
authored
chore: move async files into async folder (#1544)
1 parent fd8e911 commit aca40f5

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

google/cloud/storage/_experimental/async_grpc_client.py renamed to google/cloud/storage/_experimental/asyncio/async_grpc_client.py

File renamed without changes.

tests/unit/test_async_grpc_client.py renamed to tests/unit/asyncio/test_async_grpc_client.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def _make_credentials(spec=None):
2626
class 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

Comments
 (0)