about summary refs log tree commit homepage
path: root/t/v2writable.t
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2019-05-15 01:18:07 +0000
committerEric Wong <e@80x24.org>2019-05-15 01:18:52 +0000
commit70caf43a131fc5bdf7104f82f2acee9d5353d6a8 (patch)
tree54691cbe7b16adf0fd8406d2a3a514bbd19741ce /t/v2writable.t
parente981538130dd6d285392f4316328edbadab0d330 (diff)
downloadpublic-inbox-70caf43a131fc5bdf7104f82f2acee9d5353d6a8.tar.gz
www: use Inbox->over where appropriate
We don't need to rely on Xapian search functionality for the
majority of the WWW code, even.  subject_normalized is moved to
SearchMsg, where it (probably) makes more sense, anyways.
Diffstat (limited to 't/v2writable.t')
-rw-r--r--t/v2writable.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/v2writable.t b/t/v2writable.t
index 5f34d127..b0f88d27 100644
--- a/t/v2writable.t
+++ b/t/v2writable.t
@@ -258,7 +258,7 @@ EOF
         ok($im->add($mime), 'add excessively long References');
         $im->barrier;
 
-        my $msgs = $ibx->search->reopen->get_thread('x'x244);
+        my $msgs = $ibx->search->{over_ro}->get_thread('x'x244);
         is(2, scalar(@$msgs), 'got both messages');
         is($msgs->[0]->{mid}, 'x'x244, 'stored truncated mid');
         is($msgs->[1]->{references}, '<'.('x'x244).'>', 'stored truncated ref');