Skip to content

Commit c56c4ff

Browse files
Fix test :)
Co-authored-by: smaheshwar-pltr <maheshwarsreesh@gmail.com>
1 parent 583a7aa commit c56c4ff

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/integration/test_writes/test_optimistic_concurrency.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ def test_conflict_append_delete(
6666
tbl1 = _create_table(session_catalog, identifier, {"format-version": "1"}, [arrow_table_with_null])
6767
tbl2 = session_catalog.load_table(identifier)
6868

69-
tbl1.delete("string == 'z'")
69+
tbl1.append(arrow_table_with_null)
7070

7171
with pytest.raises(CommitFailedException, match="(branch main has changed: expected id ).*"):
7272
# tbl2 isn't aware of the commit by tbl1

0 commit comments

Comments
 (0)