List:Commits« Previous MessageNext Message »
From:ahristov Date:September 27 2007 1:58pm
Subject:PHP mysqlnd svn commit: r1061 - trunk/tests/ext/mysql
View as plain text  
Author: ahristov
Date: 2007-09-27 15:58:59 +0200 (Thu, 27 Sep 2007)
New Revision: 1061

Modified:
   trunk/tests/ext/mysql/mysql_list_fields.phpt
Log:
Fix test


Modified: trunk/tests/ext/mysql/mysql_list_fields.phpt
===================================================================
--- trunk/tests/ext/mysql/mysql_list_fields.phpt	2007-09-27 09:51:57 UTC (rev 1060)
+++ trunk/tests/ext/mysql/mysql_list_fields.phpt	2007-09-27 13:58:59 UTC (rev 1061)
@@ -12,8 +12,9 @@
 $tmp    = NULL;
 $link   = NULL;
 
-if (false !== ($tmp = mysql_list_fields($link, $link)))
-	printf("[002] Expecting boolean/false, got %s/%s\n", gettype($tmp), $tmp);
+// This will implicitly try to connect, and we don't want it
+//if (false !== ($tmp = mysql_list_fields($link, $link)))
+//	printf("[002] Expecting boolean/false, got %s/%s\n", gettype($tmp), $tmp);
 
 require('table.inc');
 
@@ -29,4 +30,4 @@
 print "done!";
 ?>
 --EXPECTF--
-done!
\ No newline at end of file
+done!

Thread
PHP mysqlnd svn commit: r1061 - trunk/tests/ext/mysqlahristov27 Sep