diff --git a/tests/catalog/integration_test_dynamodb.py b/tests/catalog/integration_test_dynamodb.py index 6ae14bca06..ed57beb8c6 100644 --- a/tests/catalog/integration_test_dynamodb.py +++ b/tests/catalog/integration_test_dynamodb.py @@ -184,7 +184,7 @@ def test_create_duplicate_namespace(test_catalog: Catalog, database_name: str) - test_catalog.create_namespace(database_name) -def test_create_namepsace_if_not_exists(test_catalog: Catalog, database_name: str) -> None: +def test_create_namespace_if_not_exists(test_catalog: Catalog, database_name: str) -> None: test_catalog.create_namespace(database_name) test_catalog.create_namespace_if_not_exists(database_name) assert (database_name,) in test_catalog.list_namespaces() diff --git a/tests/expressions/test_literals.py b/tests/expressions/test_literals.py index 7a129685bf..b37c94762d 100644 --- a/tests/expressions/test_literals.py +++ b/tests/expressions/test_literals.py @@ -917,7 +917,7 @@ def test_decimal_literal_increment() -> None: assert dec.increment().value.as_tuple() == Decimal("10.124").as_tuple() -def test_decimal_literal_dencrement() -> None: +def test_decimal_literal_decrement() -> None: dec = DecimalLiteral(Decimal("10.123")) # Twice to check that we don't mutate the value assert dec.decrement() == DecimalLiteral(Decimal("10.122")) diff --git a/tests/integration/test_catalog.py b/tests/integration/test_catalog.py index 4188ad83db..630cae4767 100644 --- a/tests/integration/test_catalog.py +++ b/tests/integration/test_catalog.py @@ -439,7 +439,7 @@ def test_create_duplicate_namespace(test_catalog: Catalog, database_name: str) - @pytest.mark.integration @pytest.mark.parametrize("test_catalog", CATALOGS) -def test_create_namepsace_if_not_exists(test_catalog: Catalog, database_name: str) -> None: +def test_create_namespace_if_not_exists(test_catalog: Catalog, database_name: str) -> None: test_catalog.create_namespace(database_name) test_catalog.create_namespace_if_not_exists(database_name) assert (database_name,) in test_catalog.list_namespaces() diff --git a/tests/integration/test_partition_evolution.py b/tests/integration/test_partition_evolution.py index 2afc5ceb60..b8e075db60 100644 --- a/tests/integration/test_partition_evolution.py +++ b/tests/integration/test_partition_evolution.py @@ -442,7 +442,7 @@ def test_cannot_rename_and_delete(catalog: Catalog) -> None: @pytest.mark.integration @pytest.mark.parametrize("catalog", [lf("session_catalog_hive"), lf("session_catalog")]) -def test_cannot_add_same_tranform_for_same_field(catalog: Catalog) -> None: +def test_cannot_add_same_transform_for_same_field(catalog: Catalog) -> None: table = _table(catalog) with pytest.raises(ValueError) as exc_info: table.update_spec().add_field("str", TruncateTransform(4), "truncated_str").add_field(