Skip to content

Commit 5adf3f0

Browse files
committed
Make the tests pass
1 parent 7d036b1 commit 5adf3f0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/integration/test_deletes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -336,4 +336,4 @@ def test_delete_overwrite(session_catalog: RestCatalog) -> None:
336336
Operation.APPEND,
337337
]
338338

339-
assert tbl.scan().to_arrow()['ints'] == [[3, 4], [1]]
339+
assert tbl.scan().to_arrow()['ints'].to_pylist() == [3, 4, 1]

tests/integration/test_inspect_table.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ def test_inspect_snapshots(
105105
assert df['parent_id'][0].as_py() is None
106106
assert df['parent_id'][1:].to_pylist() == df['snapshot_id'][:-1].to_pylist()
107107

108-
assert [operation.as_py() for operation in df['operation']] == ['append', 'delete', 'overwrite', 'append']
108+
assert [operation.as_py() for operation in df['operation']] == ['append', 'delete', 'append', 'append']
109109

110110
for manifest_list in df['manifest_list']:
111111
assert manifest_list.as_py().startswith("s3://")

0 commit comments

Comments
 (0)