summaryrefslogtreecommitdiff
path: root/ext/pcre/tests/preg_replace_variation1.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/pcre/tests/preg_replace_variation1.phpt')
-rw-r--r--ext/pcre/tests/preg_replace_variation1.phpt2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/pcre/tests/preg_replace_variation1.phpt b/ext/pcre/tests/preg_replace_variation1.phpt
index ac79e0bfaf..d99cc63212 100644
--- a/ext/pcre/tests/preg_replace_variation1.phpt
+++ b/ext/pcre/tests/preg_replace_variation1.phpt
@@ -13,5 +13,5 @@ $string = 'This is a string. It contains numbers (0-9) as well as parentheses an
$new_string = preg_replace(array('/\b\w{1}s/', '/(\d{1})-(\d{1})/', '/[\(!\)]/'), array('test', '$1 to $2', '*'), $string);
print $new_string;
?>
---EXPECTF--
+--EXPECT--
This test a string. It contains numbers *0 to 9* test well test parentheses and some other things*