Skip to content

Commit

Permalink
test(python): Fix delta test merge (#18601)
Browse files Browse the repository at this point in the history
  • Loading branch information
ion-elgreco authored Sep 7, 2024
1 parent 17cf78f commit 9a256a3
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions py-polars/tests/unit/io/test_delta.py
Original file line number Diff line number Diff line change
Expand Up @@ -472,9 +472,8 @@ def test_write_delta_with_merge(tmp_path: Path) -> None:
)

assert isinstance(merger, TableMerger)
assert merger.predicate == "s.a = t.a"
assert merger.source_alias == "s"
assert merger.target_alias == "t"
assert merger._builder.source_alias == "s"
assert merger._builder.target_alias == "t"

merger.when_matched_delete(predicate="t.a > 2").execute()

Expand Down

0 comments on commit 9a256a3

Please sign in to comment.