about summary refs log tree commit homepage
path: root/t/altid.t
diff options
context:
space:
mode:
Diffstat (limited to 't/altid.t')
-rw-r--r--t/altid.t8
1 files changed, 4 insertions, 4 deletions
diff --git a/t/altid.t b/t/altid.t
index f3c01520..816f5f5b 100644
--- a/t/altid.t
+++ b/t/altid.t
@@ -45,13 +45,13 @@ EOF
 }
 
 {
-        my $ro = PublicInbox::Search->new($ibx);
-        my $msgs = $ro->query("gmane:1234");
+        my $mset = $ibx->search->mset("gmane:1234");
+        my $msgs = $ibx->search->mset_to_smsg($ibx, $mset);
         $msgs = [ map { $_->{mid} } @$msgs ];
         is_deeply($msgs, ['a@example.com'], 'got one match');
 
-        $msgs = $ro->query("gmane:666");
-        is_deeply([], $msgs, 'body did NOT match');
+        $mset = $ibx->search->mset('gmane:666');
+        is($mset->size, 0, 'body did NOT match');
 };
 
 {