about summary refs log tree commit homepage
path: root/t/extsearch.t
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2020-11-23 07:05:57 +0000
committerEric Wong <e@80x24.org>2020-11-24 05:03:55 +0000
commitc39e72419ad420e21633d8b5f87ebb9c2ddcded4 (patch)
treee0bf657a9f8e889f3c23b4f86f31af1fb2b07b57 /t/extsearch.t
parent9224adfd92cfeff1c00d6b971e653ca4ed5a98d2 (diff)
downloadpublic-inbox-c39e72419ad420e21633d8b5f87ebb9c2ddcded4.tar.gz
We'll replace "$EINDEX" => "$EXTINDEX" in a user-visible
line and also some hacker-only tests.

"eindex" is no longer used because it rhymes with "reindex",
so remove the last instance of it.

Fixes: 6b0fed3b03263ba2 ("extsearch: rename -eindex to -extindex")
Diffstat (limited to 't/extsearch.t')
-rw-r--r--t/extsearch.t6
1 files changed, 3 insertions, 3 deletions
diff --git a/t/extsearch.t b/t/extsearch.t
index dc825bf4..0045294b 100644
--- a/t/extsearch.t
+++ b/t/extsearch.t
@@ -35,9 +35,9 @@ seek($fh, 0, SEEK_SET) or BAIL_OUT $!;
 run_script(['-mda', '--no-precheck'], $env, { 0 => $fh }) or BAIL_OUT '-mda';
 run_script(['-index', "$home/v1test"]) or BAIL_OUT "index $?";
 
-ok(run_script([qw(-extindex --all), "$home/eindex"]), 'extindex init');
+ok(run_script([qw(-extindex --all), "$home/extindex"]), 'extindex init');
 
-my $es = PublicInbox::ExtSearch->new("$home/eindex");
+my $es = PublicInbox::ExtSearch->new("$home/extindex");
 {
         my $smsg = $es->over->get_art(1);
         ok($smsg, 'got first article');
@@ -55,7 +55,7 @@ my $es = PublicInbox::ExtSearch->new("$home/eindex");
         my $env = { MAIL_EDITOR => "$^X -i -p -e 's/test message/BEST MSG/'" };
         my $cmd = [ qw(-edit -Ft/utf8.eml), "$home/v2test" ];
         ok(run_script($cmd, $env, $opt), '-edit');
-        ok(run_script([qw(-extindex --all), "$home/eindex"], undef, $opt),
+        ok(run_script([qw(-extindex --all), "$home/extindex"], undef, $opt),
                 'extindex again');
         like($err, qr/discontiguous range/, 'warned about discontiguous range');
         my $msg1 = $es->over->get_art(1) or BAIL_OUT 'msg1 missing';