summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2010-11-30 05:01:25 -0800
committerFather Chrysostomos <sprout@cpan.org>2010-11-30 05:02:00 -0800
commit17e8b60cd2a564ab6f4bed82ccda0c92a424ae9f (patch)
tree6f9384b837a63e43d54fc75d12b31de774cf2912
parent779bcb7d68c0d77839c133a5b8429f43e63a961f (diff)
downloadperl-17e8b60cd2a564ab6f4bed82ccda0c92a424ae9f.tar.gz
Use ' to avoid interpolation
-rw-r--r--t/op/attrs.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/op/attrs.t b/t/op/attrs.t
index b7809a8ffc..fe77043b05 100644
--- a/t/op/attrs.t
+++ b/t/op/attrs.t
@@ -310,7 +310,7 @@ foreach my $test (@tests) {
"Calling closure proto with (no) args";
eval { () = &$proto }; # used to crash in pp_leavesub
like $@, qr/^Closure prototype called/,
- "Calling closure proto with no @_ that returns a lexical";
+ 'Calling closure proto with no @_ that returns a lexical';
}
done_testing();