Skip to content

Commit

Permalink
Use assert_lt
Browse files Browse the repository at this point in the history
  • Loading branch information
RickiNano committed Jan 18, 2024
1 parent bc482f4 commit 97c7af5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nano/core_test/uint256_union.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -549,7 +549,7 @@ void test_union_operator_less_than ()
template <typename Num>
void check_operator_less_than (Num lhs, Num rhs)
{
ASSERT_TRUE (lhs < rhs);
ASSERT_LT (lhs, rhs);
ASSERT_FALSE (rhs < lhs);
ASSERT_FALSE (lhs < lhs);
ASSERT_FALSE (rhs < rhs);
Expand Down

0 comments on commit 97c7af5

Please sign in to comment.