From: jkeenan Date: Sun, 20 Nov 2011 01:15:33 +0000 (-0500) Subject: [RT #36079] Convert ` to '. X-Git-Tag: v5.15.6~378^2~8 X-Git-Url: https://perl5.git.perl.org/perl5.git/commitdiff_plain/3a46d15ceaa62c72e7c7acdca25bab58d19ded6d [RT #36079] Convert ` to '. --- diff --git a/t/op/lex_assign.t b/t/op/lex_assign.t index 38f11cc..330bf4e 100644 --- a/t/op/lex_assign.t +++ b/t/op/lex_assign.t @@ -128,7 +128,7 @@ for (@INPUT) { \$a = $op; \$b = $expectop; if (\$a ne \$b) { - print "# \$comment: got `\$a', expected `\$b'\n"; + print "# \$comment: got '\$a', expected '\$b'\n"; print "\$skip " if \$a ne \$b or \$skip eq 'skip'; } print "ok \$ord\\n"; diff --git a/t/op/magic.t b/t/op/magic.t index d123670..d8d5063 100644 --- a/t/op/magic.t +++ b/t/op/magic.t @@ -367,7 +367,7 @@ EOP no warnings; my $res = `$cmd`; - skip "Couldn't shell out to `$cmd', returned code $?", 2 if $?; + skip "Couldn't shell out to '$cmd', returned code $?", 2 if $?; return $res; };