Skip to content

Commit 6e9d8d0

Browse files
committed
ensure we do not test with 5Gb
1 parent 12d4949 commit 6e9d8d0

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

services/storage/tests/unit/test_handlers_files.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -605,10 +605,7 @@ def complex_file_name(faker: Faker) -> str:
605605
"file_size",
606606
[
607607
(TypeAdapter(ByteSize).validate_python("1Mib")),
608-
(TypeAdapter(ByteSize).validate_python("500Mib")),
609-
pytest.param(
610-
TypeAdapter(ByteSize).validate_python("5Gib"), marks=pytest.mark.heavy_load
611-
),
608+
(TypeAdapter(ByteSize).validate_python("127Mib")),
612609
],
613610
ids=byte_size_ids,
614611
)

0 commit comments

Comments
 (0)