From a2f2156c43fbc6459708264dbd1ec3f3c3285414 Mon Sep 17 00:00:00 2001 From: Miro Stauder Date: Mon, 29 May 2023 17:02:36 +0200 Subject: [PATCH] fix expected interfaces config --- test/tap/tests/admin-listen_on_unix-t.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/tap/tests/admin-listen_on_unix-t.cpp b/test/tap/tests/admin-listen_on_unix-t.cpp index 5d7e79494..b5917a5d7 100644 --- a/test/tap/tests/admin-listen_on_unix-t.cpp +++ b/test/tap/tests/admin-listen_on_unix-t.cpp @@ -58,7 +58,7 @@ int main(int argc, char** argv) { } { std::string current = get_admin_mysql_ifaces(proxysql_admin); - char * expected = (char *)"0.0.0.0:6032"; + char * expected = (char *)"0.0.0.0:6032;0.0.0.0:6031;/tmp/proxysql_admin.sock"; ok(strcmp(current.c_str(),expected)==0, "Line: %d , Current admin-mysql_ifaces = %s . Expected = %s", __LINE__, current.c_str(), expected); }