]> granicus.if.org Git - php/commitdiff
Fix test, committed in wrong folder
authorXinchen Hui <laruence@php.net>
Thu, 26 Jul 2012 05:57:04 +0000 (13:57 +0800)
committerXinchen Hui <laruence@php.net>
Thu, 26 Jul 2012 05:57:04 +0000 (13:57 +0800)
Zend/tests/bug62653.phpt

index cf5941c5b5a7c36c1e553cdae17bd3d86be3ba0e..96299f16ea4f05ce0e93d38de7742678396110df 100644 (file)
@@ -14,7 +14,7 @@ unset($array[(float)$foo]);
 print_r($array);
 
 $array = array("5"=>"bar");
-$foo = "5";
+$foo = "10.0000";
 $foo /= 2; //Makes $foo = 5 but still gettype($foo) = "double"
 $name = "foo";
 unset($array[$$name]);