diff options
author | Steffen Mueller <smueller@cpan.org> | 2012-11-19 07:48:03 +0100 |
---|---|---|
committer | Steffen Mueller <smueller@cpan.org> | 2012-11-19 07:48:03 +0100 |
commit | 4ca7ad8038b8a1f8328168141ce9ff2a711a8581 (patch) | |
tree | 565819ff4ddb581aed6be4cc45175f5c4e6f161d /ext/File-Glob | |
parent | fba89c3956c4cce3ae326d39b242024a41b0453e (diff) | |
download | perl-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.t | 4 |
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") ); } |