Skip to content

Commit 11965ba

Browse files
committed
fixed unit test imports
1 parent d9d8d3c commit 11965ba

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

tests/sdk/test_async_clients.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
create_mock_httpx_response,
1818
)
1919
from runloop_api_client.sdk import AsyncDevbox, AsyncSnapshot, AsyncBlueprint, AsyncStorageObject
20-
from runloop_api_client.sdk._async import (
20+
from runloop_api_client.sdk.async_ import (
2121
AsyncRunloopSDK,
2222
AsyncDevboxClient,
2323
AsyncSnapshotClient,

tests/sdk/test_clients.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
create_mock_httpx_response,
1515
)
1616
from runloop_api_client.sdk import Devbox, Snapshot, Blueprint, StorageObject
17-
from runloop_api_client.sdk._sync import (
17+
from runloop_api_client.sdk.sync import (
1818
RunloopSDK,
1919
DevboxClient,
2020
SnapshotClient,

tests/sdk/test_storage_object.py

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

1111
from tests.sdk.conftest import MockObjectView, create_mock_httpx_response
1212
from runloop_api_client.sdk import StorageObject
13-
from runloop_api_client.sdk._sync import StorageObjectClient
13+
from runloop_api_client.sdk.sync import StorageObjectClient
1414

1515

1616
class TestStorageObject:

0 commit comments

Comments
 (0)