]> Sergey Matveev's repositories - public-inbox.git/blobdiff - t/altid.t
imaptracker: preserve WAL journal_mode if set by user
[public-inbox.git] / t / altid.t
index c7a3601a6b196f03f5111c11f89bb0b8e57f1528..f3c01520c6db9afbb4cb0442d73ce6bfa282b8bc 100644 (file)
--- a/t/altid.t
+++ b/t/altid.t
@@ -4,7 +4,7 @@ use strict;
 use warnings;
 use Test::More;
 use PublicInbox::TestCommon;
-use PublicInbox::MIME;
+use PublicInbox::Eml;
 require_mods(qw(DBD::SQLite Search::Xapian));
 use_ok 'PublicInbox::Msgmap';
 use_ok 'PublicInbox::SearchIdx';
@@ -27,7 +27,7 @@ my $ibx;
        my $git = PublicInbox::Git->new($git_dir);
        my $im = PublicInbox::Import->new($git, 'testbox', 'test@example');
        $im->init_bare;
-       $im->add(PublicInbox::MIME->new(<<'EOF'));
+       $im->add(PublicInbox::Eml->new(<<'EOF'));
 From: a@example.com
 To: b@example.com
 Subject: boo!
@@ -47,7 +47,8 @@ EOF
 {
        my $ro = PublicInbox::Search->new($ibx);
        my $msgs = $ro->query("gmane:1234");
-       is_deeply([map { $_->mid } @$msgs], ['a@example.com'], 'got one match');
+       $msgs = [ map { $_->{mid} } @$msgs ];
+       is_deeply($msgs, ['a@example.com'], 'got one match');
 
        $msgs = $ro->query("gmane:666");
        is_deeply([], $msgs, 'body did NOT match');