From: t0m Date: Fri, 16 Oct 2009 02:07:08 +0000 (+0000) Subject: Remove spurious dumper output X-Git-Tag: 1.006009~55 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=f73494426ccdd9f1e747dafa1b79c1c4b279d3ac;p=p5sagit%2Flocal-lib.git Remove spurious dumper output git-svn-id: http://dev.catalyst.perl.org/repos/bast/local-lib/1.000/trunk@7791 bd8105ee-0ff8-0310-8827-fb3f25b6796d --- diff --git a/t/de-dup.t b/t/de-dup.t index fdc325b..51ef4f1 100644 --- a/t/de-dup.t +++ b/t/de-dup.t @@ -17,8 +17,6 @@ local::lib->import($dir); map { $inc{$_}++ } @INC; map { $perl5lib{$_} } split /:/, $ENV{PERL5LIB}; ok ! grep({ $inc{$_} > 1 } keys %inc), '@INC entries not duplicated'; -use Data::Dumper; -warn Dumper(\@INC); ok ! grep({ $perl5lib{$_} > 1 } keys %perl5lib), 'ENV{PERL5LIB} entries not duplicated'; }