summaryrefslogtreecommitdiffstats
path: root/searchlib/src
diff options
context:
space:
mode:
authorTor Egge <Tor.Egge@yahooinc.com>2021-11-04 17:21:17 +0100
committerGitHub <noreply@github.com>2021-11-04 17:21:17 +0100
commita9c05e54b74bf9a6d6d77e484b6738de40ca8274 (patch)
tree3eef9778f16a70d247be1dfd69981acb7353b321 /searchlib/src
parentc8bc3a3b9d5c70908b2c3ecd8cf3765a442b2e36 (diff)
parent8e18b8bf98446fc8a981942e39e4837858c16184 (diff)
Merge pull request #19869 from vespa-engine/toregge/relax-check-for-stopping-fusion
Relax check for stopping fusion.
Diffstat (limited to 'searchlib/src')
-rw-r--r--searchlib/src/tests/diskindex/fusion/fusion_test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/searchlib/src/tests/diskindex/fusion/fusion_test.cpp b/searchlib/src/tests/diskindex/fusion/fusion_test.cpp
index 415d4d34d0d..3889de5b4c4 100644
--- a/searchlib/src/tests/diskindex/fusion/fusion_test.cpp
+++ b/searchlib/src/tests/diskindex/fusion/fusion_test.cpp
@@ -610,7 +610,7 @@ TEST_F(FusionTest, require_that_fusion_can_be_stopped)
vespalib::rmdir("stopdump3", true);
flush_token = std::make_shared<MyFlushToken>(47);
ASSERT_FALSE(try_merge_simple_indexes("stopdump3", {"stopdump2"}, flush_token));
- EXPECT_EQ(49, flush_token->get_checks());
+ EXPECT_LT(48, flush_token->get_checks());
clean_stopped_fusion_testdirs();
}