]> Sergey Matveev's repositories - public-inbox.git/commitdiff
t/v1reindex.t: fix typo in setting `indexlevel'
authorEric Wong <e@80x24.org>
Mon, 27 May 2019 18:45:43 +0000 (18:45 +0000)
committerEric Wong <e@80x24.org>
Mon, 27 May 2019 18:48:02 +0000 (18:48 +0000)
It did not cause a test failure because the default fallback
is `indexlevel=full'

t/v1reindex.t

index 402ecd783ade4adf44a6ae0d62751189909eba99..35275fb49bbdf15a4eef202093ce48db370a541e 100644 (file)
@@ -223,7 +223,7 @@ ok(!-d $xap, 'Xapian directories removed again');
        my @warn;
        local $SIG{__WARN__} = sub { push @warn, @_ };
        my %config = %$ibx_config;
-       $config{indexleve} = 'medium';
+       $config{indexlevel} = 'medium';
        my $ibx = PublicInbox::Inbox->new(\%config);
        my $rw = PublicInbox::SearchIdx->new($ibx, 1);
        eval { $rw->index_sync };