Skip to content

Commit 3180017

Browse files
committed
reverts tests
1 parent 0cae620 commit 3180017

File tree

1 file changed

+2
-2
lines changed
  • packages/pytest-simcore/src/pytest_simcore/helpers

1 file changed

+2
-2
lines changed

packages/pytest-simcore/src/pytest_simcore/helpers/s3.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55

66
import aiofiles
77
import httpx
8+
import orjson
89
from aws_library.s3 import MultiPartUploadLinks
9-
from common_library.json_serialization import json_loads
1010
from fastapi import status
1111
from models_library.api_schemas_storage.storage_schemas import (
1212
ETag,
@@ -71,7 +71,7 @@ async def upload_file_part(
7171
assert response.status_code == status.HTTP_200_OK
7272
assert response.headers
7373
assert "Etag" in response.headers
74-
received_e_tag = json_loads(response.headers["Etag"])
74+
received_e_tag = orjson.loads(response.headers["Etag"])
7575
print(
7676
f"--> completed upload {this_file_chunk_size=} of {file=}, [{part_index + 1}/{num_parts}], {received_e_tag=}"
7777
)

0 commit comments

Comments
 (0)