summaryrefslogtreecommitdiffstats
path: root/searchcore
diff options
context:
space:
mode:
authorTor Egge <Tor.Egge@broadpark.no>2021-02-02 16:44:52 +0100
committerTor Egge <Tor.Egge@broadpark.no>2021-02-02 16:44:52 +0100
commit645657b10bb051b2357cb9846b97474d2c108cee (patch)
tree46b388fb1d5ddb4ac9bd5359e5f12a65182497df /searchcore
parent3a4df233f6e4815ac356509ddfa0bc9076bb0376 (diff)
More descriptive test name.
Diffstat (limited to 'searchcore')
-rw-r--r--searchcore/src/tests/proton/common/alloc_config/alloc_config_test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/searchcore/src/tests/proton/common/alloc_config/alloc_config_test.cpp b/searchcore/src/tests/proton/common/alloc_config/alloc_config_test.cpp
index 2c2e03dcfd0..18a0ee47a47 100644
--- a/searchcore/src/tests/proton/common/alloc_config/alloc_config_test.cpp
+++ b/searchcore/src/tests/proton/common/alloc_config/alloc_config_test.cpp
@@ -24,7 +24,7 @@ AllocStrategy make_alloc_strategy(uint32_t initial_docs) {
};
-TEST(AllocConfigTest, hello_world)
+TEST(AllocConfigTest, can_make_allocation_strategy_for_sub_dbs)
{
AllocConfig config(make_alloc_strategy(10000000), 5, 2);
EXPECT_EQ(make_alloc_strategy(20000000), config.make_alloc_strategy(SubDbType::READY));