Skip to content

Commit

Permalink
Update python/tests/test_delete.py
Browse files Browse the repository at this point in the history
  • Loading branch information
wjones127 authored Oct 5, 2023
1 parent a02d3a0 commit 1ed52d4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/tests/test_delete.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ def test_delete_a_partition(tmp_path: pathlib.Path, sample_data: pa.Table):
dt = DeltaTable(tmp_path)
old_version = dt.version()

expr = pc.field("bool") != pc.scalar(True)
expected_table = sample_data.filter(expr)
mask = pc.equal(sample_data['bool'], False)
expected_table = sample_data.filter(make)

dt.delete(predicate="bool = true")

Expand Down

0 comments on commit 1ed52d4

Please sign in to comment.