about summary refs log tree commit homepage
path: root/t/v2writable.t
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2019-06-14 07:59:53 +0000
committerEric Wong <e@80x24.org>2019-06-14 21:56:40 +0000
commit240de56c97d767cd5c819ac0be858359e8d2eff3 (patch)
tree23e78da9df2834d49f2f1d6a15609eed54c655d2 /t/v2writable.t
parent9b20aeef079c67ddaa2911b89f0b1209903d72fb (diff)
downloadpublic-inbox-240de56c97d767cd5c819ac0be858359e8d2eff3.tar.gz
Our internal data structure should be consistent with Xapian
terminology.
Diffstat (limited to 't/v2writable.t')
-rw-r--r--t/v2writable.t4
1 files changed, 2 insertions, 2 deletions
diff --git a/t/v2writable.t b/t/v2writable.t
index b0f88d27..88df2d64 100644
--- a/t/v2writable.t
+++ b/t/v2writable.t
@@ -34,7 +34,7 @@ my $mime = PublicInbox::MIME->create(
 );
 
 my $im = PublicInbox::V2Writable->new($ibx, {nproc => 1});
-is($im->{partitions}, 1, 'one partition when forced');
+is($im->{shards}, 1, 'one shard when forced');
 ok($im->add($mime), 'ordinary message added');
 foreach my $f ("$mainrepo/msgmap.sqlite3",
                 glob("$mainrepo/xap*/*"),
@@ -199,7 +199,7 @@ EOF
         my @before = $git0->qx(@log, qw(--pretty=oneline));
         my $before = $git0->qx(@log, qw(--pretty=raw --raw -r));
         $im = PublicInbox::V2Writable->new($ibx, {nproc => 2});
-        is($im->{partitions}, 1, 'detected single partition from previous');
+        is($im->{shards}, 1, 'detected single shard from previous');
         my $smsg = $im->remove($mime, 'test removal');
         $im->done;
         my @after = $git0->qx(@log, qw(--pretty=oneline));