We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fbe04d8 commit c3b9fa0Copy full SHA for c3b9fa0
services/storage/tests/conftest.py
@@ -890,7 +890,9 @@ async def output_file(
890
bucket=TypeAdapter(S3BucketName).validate_python("master-simcore"),
891
location_id=SimcoreS3DataManager.get_location_id(),
892
location_name=SimcoreS3DataManager.get_location_name(),
893
- sha256_checksum=faker.sha256(),
+ sha256_checksum=TypeAdapter(SHA256Str).validate_python(
894
+ faker.sha256(raw_output=False)
895
+ ),
896
)
897
file.entity_tag = "df9d868b94e53d18009066ca5cd90e9f"
898
file.file_size = ByteSize(12)
0 commit comments