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