Author: uwendel
Date: 2007-06-21 10:25:20 +0200 (Thu, 21 Jun 2007)
New Revision: 416
Modified:
trunk/tests/ext/mysqli/001.phpt
Log:
No hard-coded connection parameters in the tests, please! Even not in the old php.net
tests.
Modified: trunk/tests/ext/mysqli/001.phpt
===================================================================
--- trunk/tests/ext/mysqli/001.phpt 2007-06-21 08:06:57 UTC (rev 415)
+++ trunk/tests/ext/mysqli/001.phpt 2007-06-21 08:25:20 UTC (rev 416)
@@ -28,7 +28,7 @@
/*** test mysqli_real_connect with port ***/
$link = mysqli_init();
- $test .= (mysqli_real_connect($link, $host, $user, $passwd, $db, 3306, $socket))
+ $test .= (mysqli_real_connect($link, $host, $user, $passwd, $db, $port, $socket))
? "1":"0";
mysqli_close($link);
| Thread |
|---|
| • PHP mysqlnd svn commit: r416 - trunk/tests/ext/mysqli | uwendel | 21 Jun |