summaryrefslogtreecommitdiffstats
path: root/searchlib
diff options
context:
space:
mode:
authorTor Egge <Tor.Egge@broadpark.no>2019-09-24 16:14:01 +0200
committerTor Egge <Tor.Egge@broadpark.no>2019-09-24 16:14:01 +0200
commit7bbeda5bb007c4accbf594afe94aec3fd5e30b87 (patch)
tree38bf986ff3e33cb1b20ff2f1e67cb7357522c33c /searchlib
parent9f4437155a3d76442883e61eba9d092064e00eb4 (diff)
Use a more descriptive test name.
Diffstat (limited to 'searchlib')
-rw-r--r--searchlib/src/tests/attribute/attribute_test.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/searchlib/src/tests/attribute/attribute_test.cpp b/searchlib/src/tests/attribute/attribute_test.cpp
index 97d7bfd5e0e..2f3df28cc6f 100644
--- a/searchlib/src/tests/attribute/attribute_test.cpp
+++ b/searchlib/src/tests/attribute/attribute_test.cpp
@@ -242,7 +242,7 @@ private:
void testCompactLidSpace();
- void test_shrink_lid_space();
+ void test_default_value_ref_count_is_updated_after_shrink_lid_space();
template <typename AttributeType>
void requireThatAddressSpaceUsageIsReported(const Config &config, bool fastSearch);
@@ -2043,7 +2043,7 @@ get_default_value_ref_count(AttributeVector &attr)
void
-AttributeTest::test_shrink_lid_space()
+AttributeTest::test_default_value_ref_count_is_updated_after_shrink_lid_space()
{
Config cfg(BasicType::INT32, CollectionType::SINGLE);
cfg.setFastSearch(true);
@@ -2263,7 +2263,7 @@ int AttributeTest::Main()
testCreateSerialNum();
testPredicateHeaderTags();
TEST_DO(testCompactLidSpace());
- TEST_DO(test_shrink_lid_space());
+ TEST_DO(test_default_value_ref_count_is_updated_after_shrink_lid_space());
TEST_DO(requireThatAddressSpaceUsageIsReported());
testReaderDuringLastUpdate();
TEST_DO(testPendingCompaction());