Skip to content

Commit

Permalink
test: replace lookup of list_tables to DDLAccesor
Browse files Browse the repository at this point in the history
  • Loading branch information
ncclementi committed Sep 22, 2024
1 parent 0d6673f commit 96fa24a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ibis/backends/tests/test_signatures.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
CanCreateDatabase,
CanListCatalog,
CanListDatabase,
DDLAccessor,
)
from ibis.backends.sql import SQLBackend
from ibis.backends.tests.signature.typecheck import compatible
Expand Down Expand Up @@ -100,7 +101,7 @@ def _scrape_methods(modules, params):
),
),
"list_tables": pytest.param(
BaseBackend,
DDLAccessor, # Replacing BaseBackend with DDLAccessor
"list_tables",
marks=pytest.mark.notyet(["flink"]),
),
Expand Down

0 comments on commit 96fa24a

Please sign in to comment.