Skip to content

Commit 8c5ca24

Browse files
committed
Fix clean section of test case
1 parent dccd137 commit 8c5ca24

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/mysqli/tests/bug77956.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ if (!$link = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket)) {
3838
printf("[clean] Cannot connect to the server using host=%s, user=%s, passwd=***, dbname=%s, port=%s, socket=%s\n",
3939
$host, $user, $db, $port, $socket);
4040
}
41-
if (!$link->query($link, 'DROP TABLE IF EXISTS test')) {
41+
if (!$link->query('DROP TABLE IF EXISTS test')) {
4242
printf("[clean] Failed to drop old test table: [%d] %s\n", mysqli_errno($link), mysqli_error($link));
4343
}
4444
$link->close();

0 commit comments

Comments
 (0)