diff options
author | Eric Wong <e@yhbt.net> | 2020-04-21 21:16:12 +0000 |
---|---|---|
committer | Eric Wong <e@yhbt.net> | 2020-04-22 18:22:40 +0000 |
commit | 62d1a4da996bd9a664be954f71f78fe052f9df16 (patch) | |
tree | 3fc45fcaccfc149b13fc6b7688017cb176852f25 /t/time.t | |
parent | 4bd22e9528484c5d964ecba277fd6a7d5e023461 (diff) | |
download | public-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/time.t')
-rw-r--r-- | t/time.t | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -3,9 +3,9 @@ use strict; use warnings; use Test::More; -use_ok 'PublicInbox::MIME'; +use_ok 'Email::MIME'; use PublicInbox::MsgTime qw(msg_datestamp); -my $mime = PublicInbox::MIME->create( +my $mime = Email::MIME->create( header => [ From => 'a@example.com', To => 'test@example.com', |