This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
779bcb7
)
Use ' to avoid interpolation
author
Father Chrysostomos
<sprout@cpan.org>
Tue, 30 Nov 2010 13:01:25 +0000
(
05:01
-0800)
committer
Father Chrysostomos
<sprout@cpan.org>
Tue, 30 Nov 2010 13:02:00 +0000
(
05:02
-0800)
t/op/attrs.t
patch
|
blob
|
blame
|
history
diff --git
a/t/op/attrs.t
b/t/op/attrs.t
index
b7809a8
..
fe77043
100644
(file)
--- 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();