Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 9d1bc1b

Browse files
committedDec 14, 2012
Fix broken test
Need to use the configured connection parameters here. We can't assume the test user has access.
1 parent eecdb4c commit 9d1bc1b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎ext/mysqli/tests/bug63398.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ if (!$IS_MYSQLND) {
1010
?>
1111
--FILE--
1212
<?php
13-
$link = new mysqli('localhost', 'test', NULL, 'test');
13+
$link = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket);
1414

1515
mysqli_close($link);
1616

0 commit comments

Comments
 (0)
Failed to load comments.