summaryrefslogtreecommitdiff
path: root/t/store.t
diff options
context:
space:
mode:
Diffstat (limited to 't/store.t')
-rw-r--r--t/store.t3
1 files changed, 2 insertions, 1 deletions
diff --git a/t/store.t b/t/store.t
index d5b2502..bb519b1 100644
--- a/t/store.t
+++ b/t/store.t
@@ -30,13 +30,14 @@ subtest 'indexing' => {
subtest 'finding' => {
my Channel $file-channel .= new;
my TestIndex $index1 .= new(:responses('1',Str,'1',Str),:name('index1'));
- my TestIndex $index2 .= new(:responses('2',Str),:name('index2'));
+ my TestIndex $index2 .= new(:responses('2',Str,Str,Str),:name('index2'));
my MaildirIndexer::Store $store .= new(
:$file-channel,
:indices($index1,$index2),
:1workers,
);
+ $store.start;
my @responses = $store.mailbox-for-email(MaildirIndexer::Email.new) xx 4;