Skip to content

Commit

Permalink
Fixed TAP test
Browse files Browse the repository at this point in the history
  • Loading branch information
rahim-kanji committed Nov 8, 2024
1 parent 5ce49f7 commit c11901b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/tap/tests/pgsql-reg_test_4716_single_semicolon-t.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ enum ConnType {
PGconn* createNewConnection(ConnType conn_type, bool with_ssl) {
std::stringstream ss;
const char* host = (conn_type == BACKEND) ? cl.pgsql_host : cl.admin_host;
int port = (conn_type == BACKEND) ? cl.pgsql_port : cl.admin_port;
int port = (conn_type == BACKEND) ? cl.pgsql_port : cl.pgsql_admin_port;
const char* username = (conn_type == BACKEND) ? cl.pgsql_username : cl.admin_username;
const char* password = (conn_type == BACKEND) ? cl.pgsql_password : cl.admin_password;

Expand Down

0 comments on commit c11901b

Please sign in to comment.