Skip to content

Commit d171ec4

Browse files
committed
Cleanup
1 parent 37b53aa commit d171ec4

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/catalog/test_sql.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1657,7 +1657,9 @@ def test_merge_manifests_local_file_system(catalog: SqlCatalog, arrow_table_with
16571657
tbl.append(arrow_table_with_null)
16581658

16591659
assert len(tbl.scan().to_arrow()) == 5 * len(arrow_table_with_null)
1660-
manifests = tbl.current_snapshot().manifests(tbl.io)
1660+
current_snapshot = tbl.current_snapshot()
1661+
assert current_snapshot
1662+
manifests = current_snapshot.manifests(tbl.io)
16611663
assert len(manifests) == 1
16621664

16631665

0 commit comments

Comments
 (0)