aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/tests/docstore/store_by_bucket/store_by_bucket_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'searchlib/src/tests/docstore/store_by_bucket/store_by_bucket_test.cpp')
-rw-r--r--searchlib/src/tests/docstore/store_by_bucket/store_by_bucket_test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/searchlib/src/tests/docstore/store_by_bucket/store_by_bucket_test.cpp b/searchlib/src/tests/docstore/store_by_bucket/store_by_bucket_test.cpp
index 13aa1880e8c..c7e0c59da12 100644
--- a/searchlib/src/tests/docstore/store_by_bucket/store_by_bucket_test.cpp
+++ b/searchlib/src/tests/docstore/store_by_bucket/store_by_bucket_test.cpp
@@ -7,7 +7,6 @@
#include <vespa/searchlib/docstore/storebybucket.h>
#include <vespa/vespalib/stllike/asciistream.h>
#include <vespa/vespalib/stllike/hash_set.h>
-#include <vespa/vespalib/util/size_literals.h>
#include <vespa/vespalib/util/threadstackexecutor.h>
#include <vespa/log/log.h>
@@ -79,6 +78,7 @@ TEST("require that StoreByBucket gives bucket by bucket and ordered within")
for (size_t i(1000); i > 500; i--) {
add(sbb, i);
}
+ sbb.close();
EXPECT_EQUAL(32u, sbb.getBucketCount());
EXPECT_EQUAL(1000u, sbb.getLidCount());
VerifyBucketOrder vbo;