diff options
author | andy wharmby <wharmby@php.net> | 2009-06-23 23:00:55 +0000 |
---|---|---|
committer | andy wharmby <wharmby@php.net> | 2009-06-23 23:00:55 +0000 |
commit | 0fbf8cebd70a08512ed1cb57d0d4bdda80e162c1 (patch) | |
tree | b892356cd0043389af827f68e1b36ad3674e275c | |
parent | 3aaaf77a0eb79815e3d6ef2c828cac30d7c4df68 (diff) | |
download | php-git-0fbf8cebd70a08512ed1cb57d0d4bdda80e162c1.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-- |