From: Jarkko Hietaniemi Date: Thu, 3 Jul 2003 18:55:37 +0000 (+0000) Subject: Revert #19957 as requested by Rafael. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=4b12b7f5aaa10e96c6a01cd84b8e2ba8348ae296;p=p5sagit%2Fp5-mst-13.2.git Revert #19957 as requested by Rafael. p4raw-id: //depot/perl@19963 --- diff --git a/ext/List/Util/t/tainted.t b/ext/List/Util/t/tainted.t index 05611a8..a330b1f 100644 --- a/ext/List/Util/t/tainted.t +++ b/ext/List/Util/t/tainted.t @@ -27,12 +27,12 @@ my $var = 2; print "not " if tainted($var); print "ok 2\n"; -my $key = (grep $_ ne 'PERL_CORE', keys %ENV)[0]; +my $key = (keys %ENV)[0]; $var = $ENV{$key}; print "not " unless tainted($var); -print "ok 3 - '$var'\n"; +print "ok 3\n"; print "not " unless tainted($ENV{$key}); -print "ok 4 - key '$key', val '$ENV{$key}'\n"; +print "ok 4\n";