From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-4.0 required=3.0 tests=ALL_TRUSTED,BAYES_00 shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 479E21F609 for ; Mon, 27 May 2019 18:45:46 +0000 (UTC) From: Eric Wong To: meta@public-inbox.org Subject: [PATCH 1/3] t/v1reindex.t: fix typo in setting `indexlevel' Date: Mon, 27 May 2019 18:45:43 +0000 Message-Id: <20190527184545.536-2-e@80x24.org> In-Reply-To: <20190527184545.536-1-e@80x24.org> References: <20190527184545.536-1-e@80x24.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: It did not cause a test failure because the default fallback is `indexlevel=full' --- t/v1reindex.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/v1reindex.t b/t/v1reindex.t index 402ecd7..35275fb 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 }; -- EW