Skip to content

Commit ab75641

Browse files
committed
fix test for python3.9
1 parent 38042ca commit ab75641

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/catalog/test_rest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1533,7 +1533,7 @@ def test_rest_catalog_with_basic_auth_type() -> None:
15331533
with pytest.raises(TypeError) as e:
15341534
# Missing namespace
15351535
RestCatalog("rest", **catalog_properties) # type: ignore
1536-
assert "BasicAuthManager.__init__() missing 1 required positional argument: 'password'" in str(e.value)
1536+
assert "__init__() missing 1 required positional argument: 'password'" in str(e.value)
15371537

15381538

15391539
def test_rest_catalog_with_custom_auth_type() -> None:

0 commit comments

Comments
 (0)