diff options
Diffstat (limited to 'tests/function')
-rw-r--r-- | tests/function/regex/testscript | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/function/regex/testscript b/tests/function/regex/testscript index 091c28a..9006690 100644 --- a/tests/function/regex/testscript +++ b/tests/function/regex/testscript @@ -203,7 +203,7 @@ v = [string] "foo.cxx bar.txt" - print $regex.replace_lines($v, [string] '(.*)\.cxx', [string]'\1.hxx', return_lines) + print $regex.replace_lines($v, [string] '(.*)\.cxx', [string] '\1.hxx', return_lines) EOI foo.hxx bar.txt |