From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-2.9 required=3.0 tests=ALL_TRUSTED,AWL,BAYES_00 shortcircuit=no autolearn=unavailable version=3.3.2 X-Original-To: meta@public-inbox.org Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id B91D220458 for ; Sun, 28 Feb 2016 11:28:36 +0000 (UTC) From: Eric Wong To: meta@public-inbox.org Subject: [PATCH 1/3] t/: remove unnecessary Dumper use Date: Sun, 28 Feb 2016 11:28:31 +0000 Message-Id: <20160228112833.11319-2-e@80x24.org> In-Reply-To: <20160228112833.11319-1-e@80x24.org> References: <20160228112833.11319-1-e@80x24.org> List-Id: No point in loading Data::Dumper if we do not use it in the tests. --- t/nntpd.t | 1 - t/search.t | 1 - 2 files changed, 2 deletions(-) diff --git a/t/nntpd.t b/t/nntpd.t index f6f71a2..d8c2e7b 100644 --- a/t/nntpd.t +++ b/t/nntpd.t @@ -17,7 +17,6 @@ use Socket qw(SO_KEEPALIVE IPPROTO_TCP TCP_NODELAY); use File::Temp qw/tempdir/; use Net::NNTP; use IPC::Run qw(run); -use Data::Dumper; my $tmpdir = tempdir(CLEANUP => 1); my $home = "$tmpdir/pi-home"; diff --git a/t/search.t b/t/search.t index cd7048f..3ec3f30 100644 --- a/t/search.t +++ b/t/search.t @@ -7,7 +7,6 @@ eval { require PublicInbox::SearchIdx; }; plan skip_all => "Xapian missing for search" if $@; use File::Temp qw/tempdir/; use Email::MIME; -use Data::Dumper; my $tmpdir = tempdir(CLEANUP => 1); my $git_dir = "$tmpdir/a.git"; my ($root_id, $last_id); -- EW