Skip to content

Commit

Permalink
fix: Remove redundant STAmount conversion in test (#4996)
Browse files Browse the repository at this point in the history
  • Loading branch information
ximinez authored Apr 19, 2024
1 parent cd737ad commit f20e66e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/app/AMM_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ struct AMM_test : public jtx::AMMTest
STIssue(sfAsset, STAmount(XRP(2'000)).issue()));
BEAST_EXPECT(
STIssue(sfAsset, STAmount(XRP(2'000)).issue()) !=
STIssue(sfAsset, STAmount({USD(2'000)}).issue()));
STIssue(sfAsset, STAmount(USD(2'000)).issue()));
}

void
Expand Down

0 comments on commit f20e66e

Please sign in to comment.