From: Daniel Black Date: Thu, 25 Feb 2021 02:09:08 +0000 (+1100) Subject: mysqlnd pam fix test error message X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8309c0446411237a1b17d0368e55af921cfb49e8;p=php mysqlnd pam fix test error message Closes GH-6727. --- diff --git a/ext/mysqli/tests/mysqli_auth_pam.phpt b/ext/mysqli/tests/mysqli_auth_pam.phpt index 587320a628..702abadf4b 100644 --- a/ext/mysqli/tests/mysqli_auth_pam.phpt +++ b/ext/mysqli/tests/mysqli_auth_pam.phpt @@ -102,8 +102,8 @@ max_execution_time=240 require_once('table.inc'); if (!$link = my_mysqli_connect($host, 'pamtest', 'pamtest', $db, $port, $socket)) { - printf("[001] Cannot connect to the server using host=%s, user=%s, passwd=***, dbname=%s, port=%s, socket=%s\n", - $host, $user, $db, $port, $socket); + printf("[001] Cannot connect to the server using host=%s, user=pamtest, passwd=pamtest dbname=%s, port=%s, socket=%s\n", + $host, $db, $port, $socket); } else { if (!$res = $link->query("SELECT id FROM test WHERE id = 1"))