summaryrefslogtreecommitdiffstats
path: root/storage/src/tests/distributor/check_condition_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'storage/src/tests/distributor/check_condition_test.cpp')
-rw-r--r--storage/src/tests/distributor/check_condition_test.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/storage/src/tests/distributor/check_condition_test.cpp b/storage/src/tests/distributor/check_condition_test.cpp
index a47505a2ee6..5308d9a7c34 100644
--- a/storage/src/tests/distributor/check_condition_test.cpp
+++ b/storage/src/tests/distributor/check_condition_test.cpp
@@ -39,7 +39,6 @@ public:
// By default, set up 2 nodes {0, 1} with mutually out of sync replica state
// and with both reporting that they support condition probing.
setup_stripe(2, 2, "version:1 storage:2 distributor:1");
- config_enable_condition_probing(true);
tag_content_node_supports_condition_probing(0, true);
tag_content_node_supports_condition_probing(1, true);
addNodesToBucketDB(_bucket_id, "0=10/20/30/t,1=40/50/60");
@@ -119,12 +118,6 @@ public:
CheckConditionTest::CheckConditionTest() = default;
CheckConditionTest::~CheckConditionTest() = default;
-TEST_F(CheckConditionTest, no_checker_returned_when_config_disabled) {
- config_enable_condition_probing(false);
- auto cond = create_check_condition();
- EXPECT_FALSE(cond);
-}
-
TEST_F(CheckConditionTest, no_checker_returned_when_probing_not_supported_on_at_least_one_node) {
tag_content_node_supports_condition_probing(1, false);
auto cond = create_check_condition();