philip                                   Tue, 24 May 2011 23:49:04 +0000

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

Log:
Fixed test

Changed paths:
    U   php/php-src/branches/PHP_5_3/Zend/tests/constants_005.phpt
    U   php/php-src/branches/PHP_5_4/Zend/tests/constants_005.phpt
    U   php/php-src/trunk/Zend/tests/constants_005.phpt

Modified: php/php-src/branches/PHP_5_3/Zend/tests/constants_005.phpt
===================================================================
--- php/php-src/branches/PHP_5_3/Zend/tests/constants_005.phpt  2011-05-24 
23:48:42 UTC (rev 311405)
+++ php/php-src/branches/PHP_5_3/Zend/tests/constants_005.phpt  2011-05-24 
23:49:04 UTC (rev 311406)
@@ -1,5 +1,5 @@
 --TEST--
-Persistent case insensetive and user defined constants
+Persistent case insensitive and user defined constants
 --FILE--
 <?php
 var_dump(ZEND_THREAD_safe);
@@ -7,5 +7,6 @@
 var_dump(ZEND_THREAD_safe);
 ?>
 --EXPECTF--
-bool(%s)
+Notice: Use of undefined constant ZEND_THREAD_safe - assumed 
'ZEND_THREAD_safe' in %s on line %d
+string(16) "ZEND_THREAD_safe"
 int(123)

Modified: php/php-src/branches/PHP_5_4/Zend/tests/constants_005.phpt
===================================================================
--- php/php-src/branches/PHP_5_4/Zend/tests/constants_005.phpt  2011-05-24 
23:48:42 UTC (rev 311405)
+++ php/php-src/branches/PHP_5_4/Zend/tests/constants_005.phpt  2011-05-24 
23:49:04 UTC (rev 311406)
@@ -1,5 +1,5 @@
 --TEST--
-Persistent case insensetive and user defined constants
+Persistent case insensitive and user defined constants
 --FILE--
 <?php
 var_dump(ZEND_THREAD_safe);
@@ -7,5 +7,6 @@
 var_dump(ZEND_THREAD_safe);
 ?>
 --EXPECTF--
-bool(%s)
+Notice: Use of undefined constant ZEND_THREAD_safe - assumed 
'ZEND_THREAD_safe' in %s on line %d
+string(16) "ZEND_THREAD_safe"
 int(123)

Modified: php/php-src/trunk/Zend/tests/constants_005.phpt
===================================================================
--- php/php-src/trunk/Zend/tests/constants_005.phpt     2011-05-24 23:48:42 UTC 
(rev 311405)
+++ php/php-src/trunk/Zend/tests/constants_005.phpt     2011-05-24 23:49:04 UTC 
(rev 311406)
@@ -1,5 +1,5 @@
 --TEST--
-Persistent case insensetive and user defined constants
+Persistent case insensitive and user defined constants
 --FILE--
 <?php
 var_dump(ZEND_THREAD_safe);

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

Reply via email to