about summary refs log tree commit homepage
path: root/t/v1-add-remove-add.t
diff options
context:
space:
mode:
Diffstat (limited to 't/v1-add-remove-add.t')
-rw-r--r--t/v1-add-remove-add.t22
1 files changed, 11 insertions, 11 deletions
diff --git a/t/v1-add-remove-add.t b/t/v1-add-remove-add.t
index c3a7e77f..23f4fb11 100644
--- a/t/v1-add-remove-add.t
+++ b/t/v1-add-remove-add.t
@@ -5,7 +5,8 @@ use warnings;
 use Test::More;
 use PublicInbox::Import;
 use PublicInbox::TestCommon;
-require_mods(qw(DBD::SQLite Search::Xapian Email::MIME));
+use PublicInbox::MIME;
+require_mods(qw(DBD::SQLite Search::Xapian));
 require PublicInbox::SearchIdx;
 my ($inboxdir, $for_destroy) = tmpdir();
 my $ibx = {
@@ -14,16 +15,15 @@ my $ibx = {
         -primary_address => 'test@example.com',
 };
 $ibx = PublicInbox::Inbox->new($ibx);
-my $mime = Email::MIME->create(
-        header => [
-                From => 'a@example.com',
-                To => 'test@example.com',
-                Subject => 'this is a subject',
-                Date => 'Fri, 02 Oct 1993 00:00:00 +0000',
-                'Message-ID' => '<a-mid@b>',
-        ],
-        body => "hello world\n",
-);
+my $mime = PublicInbox::MIME->new(<<'EOF');
+From: a@example.com
+To: test@example.com
+Subject: this is a subject
+Message-ID: <a-mid@b>
+Date: Fri, 02 Oct 1993 00:00:00 +0000
+
+hello world
+EOF
 my $im = PublicInbox::Import->new($ibx->git, undef, undef, $ibx);
 $im->init_bare;
 ok($im->add($mime), 'message added');