Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion pyiceberg/avro/codecs/zstandard_codec.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def decompress(data: bytes) -> bytes:
if not chunk:
break
uncompressed.extend(chunk)
return uncompressed
return bytes(uncompressed)

except ImportError:

Expand Down
2 changes: 1 addition & 1 deletion tests/utils/test_manifest.py
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ def test_write_empty_manifest() -> None:


@pytest.mark.parametrize("format_version", [1, 2])
@pytest.mark.parametrize("compression", ["null", "deflate"])
@pytest.mark.parametrize("compression", ["null", "deflate", "zstd"])
def test_write_manifest(
generated_manifest_file_file_v1: str,
generated_manifest_file_file_v2: str,
Expand Down