Skip to content

Commit 9c8b80b

Browse files
committed
lint
1 parent 4ed9cf8 commit 9c8b80b

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

tests/integration/test_catalog.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@
4242
from pyiceberg.table.metadata import INITIAL_SPEC_ID
4343
from pyiceberg.table.sorting import INITIAL_SORT_ORDER_ID, SortField, SortOrder
4444
from pyiceberg.transforms import BucketTransform, DayTransform, IdentityTransform
45-
from pyiceberg.typedef import Identifier
4645
from pyiceberg.types import IntegerType, LongType, NestedField, TimestampType, UUIDType
4746
from tests.conftest import clean_up
4847

@@ -641,6 +640,7 @@ def test_rest_custom_namespace_separator(rest_catalog: RestCatalog, table_schema
641640
loaded_table = rest_catalog.load_table(identifier=full_table_identifier_tuple)
642641
assert loaded_table.name() == full_table_identifier_tuple
643642

643+
644644
@pytest.mark.integration
645645
@pytest.mark.parametrize("test_catalog", CATALOGS)
646646
def test_incompatible_partitioned_schema_evolution(
@@ -671,6 +671,7 @@ def test_incompatible_partitioned_schema_evolution(
671671
assert table.spec() == PartitionSpec(PartitionField(2, 1001, DayTransform(), "tpep_pickup_day"), spec_id=1)
672672
assert table.schema() == Schema(NestedField(2, "tpep_pickup_datetime", TimestampType(), False))
673673

674+
674675
@pytest.mark.integration
675676
@pytest.mark.parametrize("test_catalog", CATALOGS)
676677
def test_namespace_with_slash(test_catalog: Catalog) -> None:
@@ -715,6 +716,7 @@ def test_incompatible_sorted_schema_evolution(
715716
NestedField(1, "VendorID", IntegerType(), False), NestedField(2, "tpep_pickup_datetime", TimestampType(), False)
716717
)
717718

719+
718720
def test_namespace_with_dot(test_catalog: Catalog) -> None:
719721
if isinstance(test_catalog, (HiveCatalog, SqlCatalog)):
720722
pytest.skip(f"{type(test_catalog).__name__} does not support dot in namespace")

0 commit comments

Comments
 (0)