summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntony Dovgal <tony2001@php.net>2008-02-21 13:39:04 +0000
committerAntony Dovgal <tony2001@php.net>2008-02-21 13:39:04 +0000
commit9609e195e9f512b642a2aa7e8a015076f3c56086 (patch)
treeab060080ca9066528bdbe72f6396b6fe51238bbf
parent2fc9f5928e3d6f6c9202ad75dd8ba04e04d89e23 (diff)
downloadphp-git-9609e195e9f512b642a2aa7e8a015076f3c56086.tar.gz
fix test
-rw-r--r--ext/pcre/tests/bug44191.phpt4
1 files changed, 1 insertions, 3 deletions
diff --git a/ext/pcre/tests/bug44191.phpt b/ext/pcre/tests/bug44191.phpt
index eaffaaad2b..200fb78a8f 100644
--- a/ext/pcre/tests/bug44191.phpt
+++ b/ext/pcre/tests/bug44191.phpt
@@ -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);
?>