Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tests/unit/artifacts/providers/test_zip_provider.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,9 +131,9 @@ def test_extract_zstd_zip(self) -> None:
with tempfile.NamedTemporaryFile(suffix=".zip") as temp_file:
temp_path = Path(temp_file.name)

# Create a zstd-compressed zip (compression method 93)
# Create a zstd-compressed zip
with zipfile.ZipFile(temp_path, "w") as zf:
zf.writestr("test.txt", "content", compress_type=93)
zf.writestr("test.txt", "content", zipfile.ZIP_ZSTANDARD)

try:
provider = ZipProvider(temp_path)
Expand Down
Loading