summaryrefslogtreecommitdiff
path: root/ext/File-Glob
diff options
context:
space:
mode:
authorSteffen Mueller <smueller@cpan.org>2012-11-19 07:48:03 +0100
committerSteffen Mueller <smueller@cpan.org>2012-11-19 07:48:03 +0100
commit4ca7ad8038b8a1f8328168141ce9ff2a711a8581 (patch)
tree565819ff4ddb581aed6be4cc45175f5c4e6f161d /ext/File-Glob
parentfba89c3956c4cce3ae326d39b242024a41b0453e (diff)
downloadperl-4ca7ad8038b8a1f8328168141ce9ff2a711a8581.tar.gz
Fix test-skipping logic for File::Glob under no-taint-perl
Diffstat (limited to 'ext/File-Glob')
-rw-r--r--ext/File-Glob/t/taint.t4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/File-Glob/t/taint.t b/ext/File-Glob/t/taint.t
index aab379b5bf..4751303fe0 100644
--- a/ext/File-Glob/t/taint.t
+++ b/ext/File-Glob/t/taint.t
@@ -14,8 +14,8 @@ use Test::More;
BEGIN {
plan(
${^TAINT}
- ? (skip_all => "Appear to running a perl without taint support")
- : (tests => 2)
+ ? (tests => 2)
+ : (skip_all => "Appear to running a perl without taint support")
);
}