Skip to content

Commit

Permalink
style
Browse files Browse the repository at this point in the history
  • Loading branch information
vuule committed Sep 10, 2022
1 parent 282af9d commit f766f00
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/cudf/cudf/tests/test_parquet.py
Original file line number Diff line number Diff line change
Expand Up @@ -2556,12 +2556,12 @@ def test_parquet_writer_zstd():
"c": np.random.choice(np.arange(4), size=size),
}
)

buff = BytesIO()
try:
expected.to_orc(buff, compression="ZSTD")
except RuntimeError:
pytest.mark.xfail(reason="Newer nvCOMP version is required")
else:
else:
got = pd.read_orc(buff)
assert_eq(expected, got)

0 comments on commit f766f00

Please sign in to comment.