Skip to content

Commit d722d04

Browse files
committed
done
1 parent 023571a commit d722d04

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

services/storage/tests/unit/test__legacy_storage_sdk_compatibility.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ async def test_storage_client_used_in_simcore_sdk_0_3_2( # noqa: PLR0915
101101
response_payload,
102102
status_code,
103103
response_headers,
104-
) = await api.list_storage_locations_with_http_info(user_id)
104+
) = await api.get_storage_locations_with_http_info(user_id)
105105
print(f"{response_payload=}")
106106
print(f"{status_code=}")
107107
print(f"{response_headers=}")
@@ -145,7 +145,7 @@ async def test_storage_client_used_in_simcore_sdk_0_3_2( # noqa: PLR0915
145145

146146
# _get_location_id_from_location_name
147147
# https://github.com/ITISFoundation/osparc-simcore/blob/cfdf4f86d844ebb362f4f39e9c6571d561b72897/packages/simcore-sdk/src/simcore_sdk/node_ports/filemanager.py#L89
148-
resp_model = await api.list_storage_locations(user_id=user_id)
148+
resp_model = await api.get_storage_locations(user_id=user_id)
149149
print(f"{resp_model=}")
150150
for location in resp_model.data:
151151
assert location["name"] == location_name

0 commit comments

Comments
 (0)