Fix test_ssl_cert_authentication

This commit is contained in:
Robert Schulze 2024-02-13 10:02:47 +00:00
parent 0674582028
commit c556f62f51
No known key found for this signature in database
GPG Key ID: 26703B55FB13728A

View File

@ -122,7 +122,7 @@ def test_native_wrong_cert():
execute_query_native(
instance, "SELECT currentUser()", user="john", cert_name="wrong"
)
assert "UNKNOWN_CA" in str(err.value)
assert "unknown ca" in str(err.value)
def test_native_fallback_to_password():