Skip to content

Commit c29c29c

Browse files
committed
PR comments
1 parent 02b65b4 commit c29c29c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/integration/test_catalog.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -354,10 +354,10 @@ def test_update_namespace_properties(test_catalog: Catalog, database_name: str)
354354

355355
@pytest.mark.integration
356356
@pytest.mark.parametrize("test_catalog", CATALOGS)
357-
def test_update_table_spec(test_catalog: Catalog, table_name: str, database_name: str) -> None:
357+
def test_update_table_spec(test_catalog: Catalog, test_schema: Schema, table_name: str, database_name: str) -> None:
358358
identifier = (database_name, table_name)
359359
test_catalog.create_namespace(database_name)
360-
table = test_catalog.create_table(identifier, SIMPLE_SCHEMA)
360+
table = test_catalog.create_table(identifier, test_schema)
361361

362362
with table.update_spec() as update:
363363
update.add_field(source_column_name="id", transform=BucketTransform(16), partition_field_name="shard")

0 commit comments

Comments
 (0)