diff --git a/tests/integration/test_ssl_cert_authentication/test.py b/tests/integration/test_ssl_cert_authentication/test.py index a893a502e09..22d41bb6e14 100644 --- a/tests/integration/test_ssl_cert_authentication/test.py +++ b/tests/integration/test_ssl_cert_authentication/test.py @@ -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():