about summary refs log tree commit homepage
path: root/t/indexlevels-mirror.t
diff options
context:
space:
mode:
authorEric Wong <e@yhbt.net>2020-04-21 21:16:12 +0000
committerEric Wong <e@yhbt.net>2020-04-22 18:22:40 +0000
commit62d1a4da996bd9a664be954f71f78fe052f9df16 (patch)
tree3fc45fcaccfc149b13fc6b7688017cb176852f25 /t/indexlevels-mirror.t
parent4bd22e9528484c5d964ecba277fd6a7d5e023461 (diff)
downloadpublic-inbox-62d1a4da996bd9a664be954f71f78fe052f9df16.tar.gz
t/*.t: use Email::MIME->create over PublicInbox::MIME->create
PublicInbox::MIME only supports ->new, and is only different
from Email::MIME for old versions of Email::MIME.  In the
future, PublicInbox::MIME may not be a subclass of Email::MIME
at all.
Diffstat (limited to 't/indexlevels-mirror.t')
-rw-r--r--t/indexlevels-mirror.t4
1 files changed, 2 insertions, 2 deletions
diff --git a/t/indexlevels-mirror.t b/t/indexlevels-mirror.t
index f2200306..90506e28 100644
--- a/t/indexlevels-mirror.t
+++ b/t/indexlevels-mirror.t
@@ -10,9 +10,9 @@ require PublicInbox::Admin;
 use PublicInbox::TestCommon;
 my $PI_TEST_VERSION = $ENV{PI_TEST_VERSION} || 2;
 require_git('2.6') if $PI_TEST_VERSION == 2;
-require_mods(qw(DBD::SQLite));
+require_mods(qw(DBD::SQLite Email::MIME));
 
-my $mime = PublicInbox::MIME->create(
+my $mime = Email::MIME->create(
         header => [
                 From => 'a@example.com',
                 To => 'test@example.com',