]> Sergey Matveev's repositories - public-inbox.git/blobdiff - t/convert-compact.t
feed: respect feedmax, again
[public-inbox.git] / t / convert-compact.t
index 92a6a9c588fb83f8213e00bdf5c769ac1cdd5d72..5caa0acc36c171d80da0e15dedec8893b19f6854 100644 (file)
@@ -10,7 +10,7 @@ foreach my $mod (@mods) {
        eval "require $mod";
        plan skip_all => "$mod missing for convert-compact.t" if $@;
 }
-use PublicInbox::V2Writable;
+use_ok 'PublicInbox::V2Writable';
 use PublicInbox::Import;
 my $tmpdir = tempdir('convert-compact-XXXXXX', TMPDIR => 1, CLEANUP => 1);
 my $ibx = {
@@ -99,8 +99,8 @@ foreach (@xdir) {
        is($st[2] & 07777, -f _ ? 0444 : 0755,
                'sharedRepository respected after v2 compact');
 }
-my $res = $ibx->recent({limit => 1000});
-is($res->{msgs}->[0]->{mid}, 'a-mid@b', 'message exists in history');
-is(scalar @{$res->{msgs}}, 1, 'only one message in history');
+my $msgs = $ibx->recent({limit => 1000});
+is($msgs->[0]->{mid}, 'a-mid@b', 'message exists in history');
+is(scalar @$msgs, 1, 'only one message in history');
 
 done_testing();