]> Sergey Matveev's repositories - public-inbox.git/blobdiff - t/filter_base.t
www: drop --subject from "git send-email" instructions
[public-inbox.git] / t / filter_base.t
index bbd64189fb5fa2a2484d100bd6a3035708ecade0..2646321a8e715cee88e0213f49e8328cf965393f 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 2016-2020 all contributors <meta@public-inbox.org>
+# Copyright (C) 2016-2021 all contributors <meta@public-inbox.org>
 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
 use strict;
 use warnings;
@@ -21,13 +21,13 @@ use_ok 'PublicInbox::Filter::Base';
 
 {
        my $f = PublicInbox::Filter::Base->new;
-       my $email = mime_load 't/filter_base-xhtml.eml';
+       my $email = eml_load 't/filter_base-xhtml.eml';
        is($f->delivery($email), 100, "xhtml rejected");
 }
 
 {
        my $f = PublicInbox::Filter::Base->new;
-       my $email = mime_load 't/filter_base-junk.eml';
+       my $email = eml_load 't/filter_base-junk.eml';
        is($f->delivery($email), 100, 'proprietary format rejected on glob');
 }