]> granicus.if.org Git - php/commitdiff
fix test
authorAntony Dovgal <tony2001@php.net>
Thu, 21 Feb 2008 13:39:04 +0000 (13:39 +0000)
committerAntony Dovgal <tony2001@php.net>
Thu, 21 Feb 2008 13:39:04 +0000 (13:39 +0000)
ext/pcre/tests/bug44191.phpt

index eaffaaad2b6b1905f57a0ba8ace3b8e61f3f2f0a..200fb78a8fb0deaaf4938cad796f3dd729f917ab 100644 (file)
@@ -4,9 +4,7 @@ Bug #44191 (preg_grep messes up array index)
 <?php
 
 $array = range(1, 10);
-
-preg_grep('/asdf/', $array));
-
+preg_grep('/asdf/', $array);
 var_dump($array);
 
 ?>