Skip to content

Commit 98db350

Browse files
committed
remove redundant test
1 parent d7dd666 commit 98db350

1 file changed

Lines changed: 0 additions & 13 deletions

File tree

tests/integration/test_writes/test_rewrite_manifests.py

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -82,19 +82,6 @@ def table_v2_appended_with_null(session_catalog: Catalog, arrow_table_with_null:
8282
assert tbl.format_version == 2, f"Expected v2, got: v{tbl.format_version}"
8383

8484

85-
@pytest.fixture(scope="session", autouse=True)
86-
def table_v1_v2_appended_with_null(session_catalog: Catalog, arrow_table_with_null: pa.Table) -> None:
87-
identifier = "default.arrow_table_v1_v2_appended_with_null"
88-
tbl = _create_table(session_catalog, identifier, {"format-version": "1"}, [arrow_table_with_null])
89-
assert tbl.format_version == 1, f"Expected v1, got: v{tbl.format_version}"
90-
91-
with tbl.transaction() as tx:
92-
tx.upgrade_table_version(format_version=2)
93-
94-
tbl.append(arrow_table_with_null)
95-
96-
assert tbl.format_version == 2, f"Expected v2, got: v{tbl.format_version}"
97-
9885

9986
@pytest.mark.integration
10087
def test_rewrite_v1_v2_manifests(session_catalog: Catalog, arrow_table_with_null: pa.Table) -> None:

0 commit comments

Comments
 (0)