From: Eric Wong Date: Mon, 27 May 2019 18:45:43 +0000 (+0000) Subject: t/v1reindex.t: fix typo in setting `indexlevel' X-Git-Tag: v1.2.0~218 X-Git-Url: http://www.git.stargrave.org/?p=public-inbox.git;a=commitdiff_plain;h=8e08a9ab966eb9c3281c861d0669a2db04442561 t/v1reindex.t: fix typo in setting `indexlevel' It did not cause a test failure because the default fallback is `indexlevel=full' --- diff --git a/t/v1reindex.t b/t/v1reindex.t index 402ecd78..35275fb4 100644 --- a/t/v1reindex.t +++ b/t/v1reindex.t @@ -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 };