Skip to content

Commit

Permalink
Replace BOOST_ASSERT with BOOST_CHECK
Browse files Browse the repository at this point in the history
  • Loading branch information
mxaddict committed Dec 23, 2023
1 parent c3142c6 commit 0318921
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/wallet/test/walletload_tests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ BOOST_FIXTURE_TEST_CASE(wallet_load_ckey, TestingSetup)
// std::unique_ptr<WalletDatabase> db = get_db(dbs);
// {
// CPubKey invalid_key;
// BOOST_ASSERT(!invalid_key.IsValid());
// BOOST_CHECK(!invalid_key.IsValid());
// const auto key = std::make_pair(DBKeys::CRYPTED_KEY, invalid_key);
// std::pair<std::vector<unsigned char>, uint256> value;
// BOOST_CHECK(db->MakeBatch(false)->Write(key, value, /*fOverwrite=*/true));
Expand Down

0 comments on commit 0318921

Please sign in to comment.