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.
minisketch_tests.cpp
1 parent 0cf7401 commit 477157dCopy full SHA for 477157d
src/test/minisketch_tests.cpp
@@ -38,7 +38,7 @@ BOOST_AUTO_TEST_CASE(minisketch_test)
38
Minisketch sketch_c = std::move(sketch_ar);
39
sketch_c.Merge(sketch_br);
40
auto dec = sketch_c.Decode(errors);
41
- BOOST_CHECK(dec.has_value());
+ BOOST_REQUIRE(dec.has_value());
42
auto sols = std::move(*dec);
43
std::sort(sols.begin(), sols.end());
44
for (uint32_t i = 0; i < a_not_b; ++i) BOOST_CHECK_EQUAL(sols[i], start_a + i);
0 commit comments