about summary refs log tree commit homepage
path: root/t/extsearch.t
diff options
context:
space:
mode:
Diffstat (limited to 't/extsearch.t')
-rw-r--r--t/extsearch.t7
1 files changed, 6 insertions, 1 deletions
diff --git a/t/extsearch.t b/t/extsearch.t
index 09cbdabe..2d7375d6 100644
--- a/t/extsearch.t
+++ b/t/extsearch.t
@@ -314,7 +314,12 @@ if ('reindex catches missed messages') {
         is($new->{subject}, $eml->header('Subject'), 'new message added');
 
         $es->{xdb}->reopen;
-        my $mset = $es->mset("mid:$new->{mid}");
+        # git patch-id --stable <t/data/0001.patch | awk '{print $1}'
+        my $patchid = '91ee6b761fc7f47cad9f2b09b10489f313eb5b71';
+        my $mset = $es->search->mset("patchid:$patchid");
+        is($mset->size, 1, 'patchid search works');
+
+        $mset = $es->mset("mid:$new->{mid}");
         is($mset->size, 1, 'previously unseen, now indexed in Xapian');
 
         ok($im->remove($eml), 'remove new message from v2 inbox');