aboutsummaryrefslogtreecommitdiffstats
path: root/storage/src/tests/distributor
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2023-08-03 06:18:04 +0000
committerHenning Baldersheim <balder@yahoo-inc.com>2023-08-03 06:18:04 +0000
commitebe61f1ce66539da07162ce694026d63c09c1a41 (patch)
treec7d201e43e6b2724103f0dbafe24737b4cf8ecce /storage/src/tests/distributor
parentdb7954812c6872fc2b7d3d3cd905eb7a3b9883fa (diff)
Reverse test as default has changed
Diffstat (limited to 'storage/src/tests/distributor')
-rw-r--r--storage/src/tests/distributor/distributor_stripe_test.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/storage/src/tests/distributor/distributor_stripe_test.cpp b/storage/src/tests/distributor/distributor_stripe_test.cpp
index e963b505bc2..566fb704105 100644
--- a/storage/src/tests/distributor/distributor_stripe_test.cpp
+++ b/storage/src/tests/distributor/distributor_stripe_test.cpp
@@ -1043,13 +1043,13 @@ TEST_F(DistributorStripeTest, enable_condition_probing_config_is_propagated_to_i
{
setup_stripe(Redundancy(1), NodeCount(1), "distributor:1 storage:1");
- EXPECT_FALSE(getConfig().enable_condition_probing());
-
- configure_enable_condition_probing(true);
EXPECT_TRUE(getConfig().enable_condition_probing());
configure_enable_condition_probing(false);
EXPECT_FALSE(getConfig().enable_condition_probing());
+
+ configure_enable_condition_probing(true);
+ EXPECT_TRUE(getConfig().enable_condition_probing());
}
}