Skip to content

Commit

Permalink
test(python): Temporarily fix failing deltalake test (#14288)
Browse files Browse the repository at this point in the history
  • Loading branch information
stinodego authored Feb 5, 2024
1 parent 8bd2bec commit 7fc3151
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion py-polars/tests/unit/io/test_delta.py
Original file line number Diff line number Diff line change
Expand Up @@ -409,4 +409,6 @@ def test_write_delta_with_merge(tmp_path: Path) -> None:

table = pl.read_delta(str(tmp_path))

assert_frame_equal(df.filter(pl.col("a") <= 2), table)
# TODO: Re-enable row order check after issue is resolved:
# https://github.com/delta-io/delta-rs/issues/2165
assert_frame_equal(df.filter(pl.col("a") <= 2), table, check_row_order=False)

0 comments on commit 7fc3151

Please sign in to comment.