diff options
author | Tony Cook <tony@develop-help.com> | 2010-12-21 15:02:56 +1100 |
---|---|---|
committer | Tony Cook <tony@develop-help.com> | 2010-12-21 15:24:00 +1100 |
commit | f15ebdc700b63c2a4f535eede09f0131d10ad0a4 (patch) | |
tree | 29323a9076241e2385bdf62b8cd49fc6071ab929 | |
parent | 5611abba9b82a7cd174c3096ee52bd65ca4d2cd9 (diff) | |
download | perl-f15ebdc700b63c2a4f535eede09f0131d10ad0a4.tar.gz |
avoid emitting control characters in test comments
-rw-r--r-- | t/re/re.t | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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! |