summaryrefslogtreecommitdiff
path: root/t/op/taint.t
diff options
context:
space:
mode:
Diffstat (limited to 't/op/taint.t')
-rw-r--r--t/op/taint.t3
1 files changed, 1 insertions, 2 deletions
diff --git a/t/op/taint.t b/t/op/taint.t
index 0ac02a6306..87592d5fee 100644
--- a/t/op/taint.t
+++ b/t/op/taint.t
@@ -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/, $@;