uw                                       Tue, 05 Oct 2010 14:41:08 +0000

Revision: http://svn.php.net/viewvc?view=revision&revision=304103

Log:
Fix test: third parameter can be false.

Changed paths:
    U   php/php-src/branches/PHP_5_3/ext/pdo_mysql/tests/pdo_mysql_subclass.phpt
    U   php/php-src/trunk/ext/pdo_mysql/tests/pdo_mysql_subclass.phpt

Modified: 
php/php-src/branches/PHP_5_3/ext/pdo_mysql/tests/pdo_mysql_subclass.phpt
===================================================================
--- php/php-src/branches/PHP_5_3/ext/pdo_mysql/tests/pdo_mysql_subclass.phpt    
2010-10-05 14:38:06 UTC (rev 304102)
+++ php/php-src/branches/PHP_5_3/ext/pdo_mysql/tests/pdo_mysql_subclass.phpt    
2010-10-05 14:41:08 UTC (rev 304103)
@@ -81,7 +81,7 @@
 $db->exec('DROP TABLE IF EXISTS test');
 ?>
 --EXPECTF--
-__construct('%S', '%S', '%S')
+__construct('%S', '%S', %s)
 exec('DROP TABLE IF EXISTS test')
 exec('CREATE TABLE test(id INT)')
 exec('INSERT INTO test(id) VALUES (1), (2)')

Modified: php/php-src/trunk/ext/pdo_mysql/tests/pdo_mysql_subclass.phpt
===================================================================
--- php/php-src/trunk/ext/pdo_mysql/tests/pdo_mysql_subclass.phpt       
2010-10-05 14:38:06 UTC (rev 304102)
+++ php/php-src/trunk/ext/pdo_mysql/tests/pdo_mysql_subclass.phpt       
2010-10-05 14:41:08 UTC (rev 304103)
@@ -81,7 +81,7 @@
 $db->exec('DROP TABLE IF EXISTS test');
 ?>
 --EXPECTF--
-__construct('%S', '%S', '%S')
+__construct('%S', '%S', %s)
 exec('DROP TABLE IF EXISTS test')
 exec('CREATE TABLE test(id INT)')
 exec('INSERT INTO test(id) VALUES (1), (2)')

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to