From a6967d58e27506db72deef09f35166b44deacc05 Mon Sep 17 00:00:00 2001 From: andy wharmby Date: Tue, 23 Jun 2009 23:00:54 +0000 Subject: [PATCH] Fix test --- ext/pcre/tests/preg_match_all_error3.phpt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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-- -- 2.50.1