Skip to content

Commit d519c40

Browse files
committed
lint
1 parent f587bd9 commit d519c40

File tree

1 file changed

+2
-10
lines changed

1 file changed

+2
-10
lines changed

tests/integration/test_catalog.py

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

360360
@pytest.mark.integration
361361
@pytest.mark.parametrize("test_catalog", CATALOGS)
362-
def test_register_table(
363-
test_catalog: Catalog,
364-
table_name: str,
365-
database_name: str
366-
) -> None:
362+
def test_register_table(test_catalog: Catalog, table_name: str, database_name: str) -> None:
367363
identifier = (database_name, table_name)
368364

369365
test_catalog.create_namespace_if_not_exists(database_name)
@@ -382,11 +378,7 @@ def test_register_table(
382378

383379
@pytest.mark.integration
384380
@pytest.mark.parametrize("test_catalog", CATALOGS)
385-
def test_register_table_existing(
386-
test_catalog: Catalog,
387-
table_name: str,
388-
database_name: str
389-
) -> None:
381+
def test_register_table_existing(test_catalog: Catalog, table_name: str, database_name: str) -> None:
390382
identifier = (database_name, table_name)
391383

392384
test_catalog.create_namespace_if_not_exists(database_name)

0 commit comments

Comments
 (0)