X-Git-Url: http://www.git.stargrave.org/?a=blobdiff_plain;f=t%2Fnulsubject.t;h=7f5dd37805edeca6909be69a243917c9daa1c8bc;hb=refs%2Fheads%2Fmaster;hp=b21507c2ec1be4d16053c4550dac126c9c8e6e0e;hpb=d55abcc42bde846d9047491125dd2b32645dafd8;p=public-inbox.git diff --git a/t/nulsubject.t b/t/nulsubject.t index b21507c2..7f5dd378 100644 --- a/t/nulsubject.t +++ b/t/nulsubject.t @@ -1,4 +1,4 @@ -# Copyright (C) 2016-2020 all contributors +# Copyright (C) 2016-2021 all contributors # License: AGPL-3.0+ use strict; use warnings; @@ -14,18 +14,17 @@ my $git_dir = "$tmpdir/a.git"; my $git = PublicInbox::Git->new($git_dir); my $im = PublicInbox::Import->new($git, 'testbox', 'test@example'); $im->init_bare; - $im->add(Email::MIME->create( - header => [ - From => 'a@example.com', - To => 'b@example.com', - 'Content-Type' => 'text/plain', - Subject => ' A subject line with a null =?iso-8859-1?q?=00?= see!', - 'Message-ID' => '', - ], - body => "hello world\n", - )); + $im->add(PublicInbox::Eml->new(<<'EOF')); +From: a@example.com +To: b@example.com +Subject: A subject line with a null =?iso-8859-1?q?=00?= see! +Message-ID: + +hello world +EOF $im->done; - is(system(qw(git --git-dir), $git_dir, 'fsck', '--strict'), 0, 'git fsck ok'); + is(xsys(qw(git --git-dir), $git_dir, 'fsck', '--strict'), 0, + 'git fsck ok'); } done_testing();