We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6359561 commit 4ed9cf8Copy full SHA for 4ed9cf8
tests/integration/test_catalog.py
@@ -729,7 +729,8 @@ def test_namespace_with_dot(test_catalog: Catalog) -> None:
729
test_catalog.create_namespace(namespace)
730
assert test_catalog.namespace_exists(namespace)
731
732
- # list_namespaces returns a list of tuples
+ # REST Catalog fixture treats this as a hierarchical namespace.
733
+ # Calling list namespaces will get `new`, not `new.db`.
734
if isinstance(test_catalog, RestCatalog):
735
namespaces = test_catalog.list_namespaces()
736
assert ("new",) in namespaces or ("new.db",) in namespaces
0 commit comments