Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
wjones127 committed Oct 5, 2023
1 parent 1ed52d4 commit 164e4f3
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()

mask = pc.equal(sample_data['bool'], False)
expected_table = sample_data.filter(make)
mask = pc.equal(sample_data["bool"], False)
expected_table = sample_data.filter(mask)

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

Expand Down

0 comments on commit 164e4f3

Please sign in to comment.