Skip to content

Commit 1559c26

Browse files
committed
test fix
1 parent 2c616fc commit 1559c26

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/integration/test_catalog.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -628,10 +628,10 @@ def test_rest_custom_namespace_separator(rest_catalog: Catalog, table_schema_sim
628628

629629
# Test with a table
630630
table = rest_catalog.create_table(identifier=full_table_identifier_tuple, schema=table_schema_simple)
631-
assert table.identifier == full_table_identifier_tuple
631+
assert table.name() == full_table_identifier_tuple
632632

633633
tables = rest_catalog.list_tables(full_namespace_tuple)
634634
assert full_table_identifier_tuple in tables
635635

636636
loaded_table = rest_catalog.load_table(identifier=full_table_identifier_tuple)
637-
assert loaded_table.identifier == full_table_identifier_tuple
637+
assert loaded_table.name() == full_table_identifier_tuple

0 commit comments

Comments
 (0)