]> Sergey Matveev's repositories - public-inbox.git/blobdiff - t/mime.t
msg_iter: pass $idx as a scalar, not array
[public-inbox.git] / t / mime.t
index 0d478aced5cbe567888b651d64f9279efe13b13c..b9a4d66b098cd2fde269576953c629ede97e8777 100644 (file)
--- a/t/mime.t
+++ b/t/mime.t
@@ -98,9 +98,10 @@ $msg = PublicInbox::MIME->new($raw);
 my $nr = 0;
 msg_iter($msg, sub {
        my ($part, $level, @ex) = @{$_[0]};
-       if ($ex[0] == 1) {
+       is($level, 1, 'at expected level');
+       if (join('fail if $#ex > 0', @ex) eq '1') {
                is($part->body_str, "your tree directly? \r\n", 'body OK');
-       } elsif ($ex[0] == 2) {
+       } elsif (join('fail if $#ex > 0', @ex) eq '2') {
                is($part->body, "-----BEGIN PGP SIGNATURE-----\n\n" .
                                "=7wIb\n" .
                                "-----END PGP SIGNATURE-----\n",