Skip to content

Commit

Permalink
Merge pull request #127 from AntelopeIO/fix_a_warning
Browse files Browse the repository at this point in the history
Fix a different signedness warning in ordered_diff_moveable_test
  • Loading branch information
linh2931 authored May 10, 2024
2 parents c7b60aa + 035adf2 commit 19b7e54
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libraries/libfc/test/test_ordered_diff.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -192,9 +192,9 @@ BOOST_AUTO_TEST_CASE(ordered_diff_moveable_test) try {
auto result = ordered_diff<count_moves>::diff(source, target);
source = ordered_diff<count_moves>::apply_diff(std::move(source), std::move(result));
BOOST_TEST(source == target);
BOOST_TEST(count_moves::num_moves == 1);
BOOST_TEST(count_moves::num_moves == 1u);
}

} FC_LOG_AND_RETHROW();

BOOST_AUTO_TEST_SUITE_END()
BOOST_AUTO_TEST_SUITE_END()

0 comments on commit 19b7e54

Please sign in to comment.