summaryrefslogtreecommitdiff
path: root/cpan/Scalar-List-Utils
diff options
context:
space:
mode:
authorDavid Mitchell <davem@iabyn.com>2017-06-22 12:28:46 +0100
committerDavid Mitchell <davem@iabyn.com>2017-06-22 12:28:46 +0100
commit475524d62d5431302c913df3e8492b409284d7cc (patch)
treed20da1a1d068d49752f7b593d9e513baec6f8cec /cpan/Scalar-List-Utils
parentad91dfc9b53d9d453b48d3ef2f5c2a13a964d9d6 (diff)
downloadperl-475524d62d5431302c913df3e8492b409284d7cc.tar.gz
undo a Scalar-List-Utils customisation
.. in preparation for installing new release Revert "Scalar::List-Utils/t/tainted.t: Skip failing tests" This reverts commit 71a0317b30064fe6979f8616f6d11553b35de971.
Diffstat (limited to 'cpan/Scalar-List-Utils')
-rw-r--r--cpan/Scalar-List-Utils/t/tainted.t3
1 files changed, 0 insertions, 3 deletions
diff --git a/cpan/Scalar-List-Utils/t/tainted.t b/cpan/Scalar-List-Utils/t/tainted.t
index 9e0df5eaaf..e483dfd06c 100644
--- a/cpan/Scalar-List-Utils/t/tainted.t
+++ b/cpan/Scalar-List-Utils/t/tainted.t
@@ -15,13 +15,10 @@ ok( !tainted($var), 'known variable');
my $key = (grep { !/^PERL/ } keys %ENV)[0];
-SKIP: { # Skip these to get blead to pass, but the skip expires soon
-skip 'is randomly failing', 2 unless $] gt 5.025009;
ok( tainted($ENV{$key}), 'environment variable');
$var = $ENV{$key};
ok( tainted($var), 'copy of environment variable');
-}
{
package Tainted;