about summary refs log tree commit homepage
path: root/t/filter_vger.t
diff options
context:
space:
mode:
Diffstat (limited to 't/filter_vger.t')
-rw-r--r--t/filter_vger.t6
1 files changed, 3 insertions, 3 deletions
diff --git a/t/filter_vger.t b/t/filter_vger.t
index 0f0562ed..9d71f16d 100644
--- a/t/filter_vger.t
+++ b/t/filter_vger.t
@@ -3,7 +3,7 @@
 use strict;
 use warnings;
 use Test::More;
-use Email::MIME;
+use PublicInbox::MIME;
 use_ok 'PublicInbox::Filter::Vger';
 
 my $f = PublicInbox::Filter::Vger->new;
@@ -21,7 +21,7 @@ More majordomo info at  http://vger.kernel.org/majordomo-info.html
 Please read the FAQ at  http://www.tux.org/lkml/
 EOF
 
-        my $mime = Email::MIME->new($lkml);
+        my $mime = PublicInbox::MIME->new($lkml);
         $mime = $f->delivery($mime);
         is("keep this\n", $mime->body, 'normal message filtered OK');
 }
@@ -37,7 +37,7 @@ the body of a message to majordomo@vger.kernel.org
 More majordomo info at  http://vger.kernel.org/majordomo-info.html
 EOF
 
-        my $mime = Email::MIME->new($no_nl);
+        my $mime = PublicInbox::MIME->new($no_nl);
         $mime = $f->delivery($mime);
         is('OSX users :P', $mime->body, 'missing trailing LF in original OK');
 }