In C<use utf8; a=>'b'>, do not set utf8 flag on 'a' [perl #68812]
[p5sagit/p5-mst-13.2.git] / t / op / taint.t
index 0ac02a6..87592d5 100644 (file)
@@ -430,8 +430,7 @@ SKIP: {
     # just because Errno possibly failing.
     test eval('$!{ENOENT}') ||
        $! == 2 || # File not found
-       ($Is_Dos && $! == 22) ||
-       ($^O eq 'mint' && $! == 33);
+       ($Is_Dos && $! == 22);
 
     test !eval { open FOO, "> $foo" }, 'open for write';
     test $@ =~ /^Insecure dependency/, $@;