Skip to content

Commit de6d988

Browse files
authored
test: avoid use of TablesAccessor in stateful reconnect test (#9796)
Closes #9747.
1 parent 41e10ca commit de6d988

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ibis/backends/tests/test_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,7 @@ def test_create_temporary_table_from_schema(con_no_data, new_schema):
340340

341341
con_no_data.reconnect()
342342
# verify table no longer exist after reconnect
343-
assert temp_table not in con_no_data.tables.keys()
343+
assert temp_table not in con_no_data.list_tables()
344344

345345

346346
@mark.notimpl(

0 commit comments

Comments
 (0)