Skip to content

Commit 3c68184

Browse files
committed
fix test
1 parent 037f8d3 commit 3c68184

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
@@ -175,8 +175,8 @@ def test_list_tables(test_catalog: Catalog, table_schema_nested: Schema, databas
175175
test_catalog.create_namespace(database_name)
176176
for table_name in table_list:
177177
test_catalog.create_table((database_name, table_name), table_schema_nested)
178-
identifier_list = test_catalog.list_tables(database_name)
179-
assert len(list(identifier_list)) == len(table_list)
178+
identifier_list = list(test_catalog.list_tables(database_name))
179+
assert len(identifier_list) == len(table_list)
180180
for table_name in table_list:
181181
assert (database_name, table_name) in identifier_list
182182

0 commit comments

Comments
 (0)