File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -205,7 +205,7 @@ def test_snapshot_by_id(table_v2: Table) -> None:
205
205
206
206
207
207
def test_snapshot_by_timestamp (table_v2 : Table ) -> None :
208
- assert table_v2 .latest_snapshot_before_timestamp (1555100955771 ) == Snapshot (
208
+ assert table_v2 .snapshot_at_or_before_timestamp (1555100955771 ) == Snapshot (
209
209
snapshot_id = 3055729675574597004 ,
210
210
parent_snapshot_id = 3051729675574597004 ,
211
211
sequence_number = 1 ,
@@ -217,7 +217,7 @@ def test_snapshot_by_timestamp(table_v2: Table) -> None:
217
217
218
218
219
219
def test_current_ancestors (table_v2 : Table ) -> None :
220
- assert table_v2 .current_ancestors () == [
220
+ assert list ( table_v2 .current_ancestors () ) == [
221
221
Snapshot (
222
222
snapshot_id = 3055729675574597004 ,
223
223
parent_snapshot_id = 3051729675574597004 ,
You can’t perform that action at this time.
0 commit comments