We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 820f27c commit cdb5f23Copy full SHA for cdb5f23
test/test_span_sampler.cpp
@@ -330,6 +330,6 @@ TEST_CASE("span rule limiter") {
330
// allowed. I'm not sure how that works, but we are using a real clock and
331
// different machines run these cases at different rates, so let's build in a
332
// fudge factor.
333
- REQUIRE(count_of_sampled_spans >= test_case.expected_count - 5);
334
- REQUIRE(count_of_sampled_spans <= test_case.expected_count + 5);
+ REQUIRE(count_of_sampled_spans >= test_case.expected_count - 10);
+ REQUIRE(count_of_sampled_spans <= test_case.expected_count + 10);
335
}
0 commit comments