about summary refs log tree commit homepage
path: root/t
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2019-05-14 03:32:02 +0000
committerEric Wong <e@80x24.org>2019-05-14 03:43:27 +0000
commit1f4b022c38faba208528d0d5c993d569682b2a09 (patch)
treefb44bbfb68394368e396808c3066c5eb329a09cc /t
parent6062a213721155b945d43da33e723fbacbc8d7fe (diff)
downloadpublic-inbox-1f4b022c38faba208528d0d5c993d569682b2a09.tar.gz
We can revisit this, later; but Data::Dumper requires a separate
package for CentOS-7 users, at least.
Diffstat (limited to 't')
-rw-r--r--t/nntp.t5
1 files changed, 2 insertions, 3 deletions
diff --git a/t/nntp.t b/t/nntp.t
index 47b14422..c4b9737c 100644
--- a/t/nntp.t
+++ b/t/nntp.t
@@ -3,9 +3,8 @@
 use strict;
 use warnings;
 use Test::More;
-use Data::Dumper;
 
-foreach my $mod (qw(DBD::SQLite Search::Xapian)) {
+foreach my $mod (qw(DBD::SQLite Search::Xapian Data::Dumper)) {
         eval "require $mod";
         plan skip_all => "$mod missing for nntp.t" if $@;
 }
@@ -15,7 +14,7 @@ use_ok 'PublicInbox::Inbox';
 
 {
         sub quote_str {
-                my (undef, $s) = split(/ = /, Dumper($_[0]), 2);
+                my (undef, $s) = split(/ = /, Data::Dumper::Dumper($_[0]), 2);
                 $s =~ s/;\n//;
                 $s;
         }