summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorandy wharmby <wharmby@php.net>2009-06-23 23:00:54 +0000
committerandy wharmby <wharmby@php.net>2009-06-23 23:00:54 +0000
commita6967d58e27506db72deef09f35166b44deacc05 (patch)
treeb815f797d622a41bb900e0f3068709b4a419e763
parent7d60127c1e7e770713fb16156df0ccffa30a9948 (diff)
downloadphp-git-a6967d58e27506db72deef09f35166b44deacc05.tar.gz
Fix test
-rw-r--r--ext/pcre/tests/preg_match_all_error3.phpt2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/pcre/tests/preg_match_all_error3.phpt b/ext/pcre/tests/preg_match_all_error3.phpt
index b8b2ea211b..547ff03e44 100644
--- a/ext/pcre/tests/preg_match_all_error3.phpt
+++ b/ext/pcre/tests/preg_match_all_error3.phpt
@@ -12,7 +12,7 @@ Test preg_match_all() function : error conditions
echo "*** Testing preg_match_all() : error conditions ***\n";
$regex = '/[a-z]/';
$subject = 'string';
-var_dump(preg_match_all($regex, $subject, test));
+var_dump(preg_match_all($regex, $subject, 'test'));
echo "Done";
?>
--EXPECTF--