diff options
author | andy wharmby <wharmby@php.net> | 2009-06-23 23:00:54 +0000 |
---|---|---|
committer | andy wharmby <wharmby@php.net> | 2009-06-23 23:00:54 +0000 |
commit | a6967d58e27506db72deef09f35166b44deacc05 (patch) | |
tree | b815f797d622a41bb900e0f3068709b4a419e763 | |
parent | 7d60127c1e7e770713fb16156df0ccffa30a9948 (diff) | |
download | php-git-a6967d58e27506db72deef09f35166b44deacc05.tar.gz |
Fix test
-rw-r--r-- | ext/pcre/tests/preg_match_all_error3.phpt | 2 |
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-- |