summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTony Cook <tony@develop-help.com>2010-12-21 15:02:56 +1100
committerTony Cook <tony@develop-help.com>2010-12-21 15:24:00 +1100
commitf15ebdc700b63c2a4f535eede09f0131d10ad0a4 (patch)
tree29323a9076241e2385bdf62b8cd49fc6071ab929
parent5611abba9b82a7cd174c3096ee52bd65ca4d2cd9 (diff)
downloadperl-f15ebdc700b63c2a4f535eede09f0131d10ad0a4.tar.gz
avoid emitting control characters in test comments
-rw-r--r--t/re/re.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/re/re.t b/t/re/re.t
index cdf627044b..67c21813c0 100644
--- a/t/re/re.t
+++ b/t/re/re.t
@@ -106,7 +106,7 @@ if ('1234'=~/(?:(?<A>\d)|(?<C>!))(?<B>\d)(?<A>\d)(?<B>\d)/){
# Bug #78058; this can loop
no warnings; # Because the 8 may be warned on
eval 'qr/\18/';
- pass("qr/\18/ didn't loop");
+ pass(q"qr/\18/ didn't loop");
}
# New tests above this line, don't forget to update the test count below!