From dd1d231d5135e68a03cece98223de484fd90d65e Mon Sep 17 00:00:00 2001 From: Rahim Kanji Date: Sun, 17 Aug 2025 14:58:27 +0500 Subject: [PATCH] TAP: Use correct pgsql username and password --- test/tap/tests/pgsql-multiplex_status_test-t.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/tap/tests/pgsql-multiplex_status_test-t.cpp b/test/tap/tests/pgsql-multiplex_status_test-t.cpp index 13c421c42..908cb3134 100644 --- a/test/tap/tests/pgsql-multiplex_status_test-t.cpp +++ b/test/tap/tests/pgsql-multiplex_status_test-t.cpp @@ -31,8 +31,8 @@ PGConnPtr createNewConnection(ConnType conn_type, const std::string& options = " const char* host = (conn_type == BACKEND) ? cl.pgsql_host : cl.pgsql_admin_host; int port = (conn_type == BACKEND) ? cl.pgsql_port : cl.pgsql_admin_port; - const char* username = (conn_type == BACKEND) ? cl.pgsql_root_username : cl.admin_username; - const char* password = (conn_type == BACKEND) ? cl.pgsql_root_password : cl.admin_password; + const char* username = (conn_type == BACKEND) ? cl.pgsql_username : cl.admin_username; + const char* password = (conn_type == BACKEND) ? cl.pgsql_password : cl.admin_password; std::stringstream ss;