[RT #36079] Convert ` to '.
authorjkeenan <jkeenan@cpan.org>
Sun, 20 Nov 2011 01:15:33 +0000 (20:15 -0500)
committerFather Chrysostomos <sprout@cpan.org>
Wed, 23 Nov 2011 00:27:21 +0000 (16:27 -0800)
t/op/lex_assign.t
t/op/magic.t

index 38f11cc..330bf4e 100644 (file)
@@ -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";
index d123670..d8d5063 100644 (file)
@@ -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;
     };