Skip to content

Commit

Permalink
fix sign-compare warning in dry_run_trx_tests
Browse files Browse the repository at this point in the history
  • Loading branch information
spoonincode committed Aug 14, 2023
1 parent 062e7f1 commit df31833
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion unittests/dry_run_trx_tests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ BOOST_FIXTURE_TEST_CASE(setabi_test, dry_run_trx_tester) { try {
send_action(act, true); // should not throw
const auto* accnt = control->db().template find<chain::account_object, chain::by_name>( "setabitest"_n );
BOOST_REQUIRE(accnt);
BOOST_TEST(accnt->abi.size() == 0); // no abi actually set
BOOST_TEST(accnt->abi.size() == 0u); // no abi actually set
} FC_LOG_AND_RETHROW() }

BOOST_FIXTURE_TEST_CASE(updateauth_test, dry_run_trx_tester) { try {
Expand Down

0 comments on commit df31833

Please sign in to comment.