Skip to content

Commit

Permalink
test: avoid use of TablesAccessor in stateful reconnect test (#9796)
Browse files Browse the repository at this point in the history
Closes #9747.
  • Loading branch information
cpcloud authored Aug 8, 2024
1 parent 41e10ca commit de6d988
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ibis/backends/tests/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ def test_create_temporary_table_from_schema(con_no_data, new_schema):

con_no_data.reconnect()
# verify table no longer exist after reconnect
assert temp_table not in con_no_data.tables.keys()
assert temp_table not in con_no_data.list_tables()


@mark.notimpl(
Expand Down

0 comments on commit de6d988

Please sign in to comment.