Skip to content

Commit

Permalink
test: fix copy pasta error
Browse files Browse the repository at this point in the history
  • Loading branch information
xenide committed Jun 11, 2024
1 parent 6b073d1 commit b7016e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/large/ReservoirPriceOracleLarge.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,8 @@ contract ReservoirPriceOracleLargeTest is ReservoirPriceOracleTest {
? lExpectedAmtBOut * lPrice2 * 10 ** lTokenCDecimal / 10 ** lTokenBDecimal / WAD
: lExpectedAmtBOut * WAD * 10 ** lTokenCDecimal / lPrice2 / 10 ** lTokenBDecimal;
uint256 lExpectedAmtDOut = lTokenC < lTokenD
? lExpectedAmtCOut * lPrice2 * 10 ** lTokenDDecimal / 10 ** lTokenCDecimal / WAD
: lExpectedAmtCOut * WAD * 10 ** lTokenDDecimal / lPrice2 / 10 ** lTokenCDecimal;
? lExpectedAmtCOut * lPrice3 * 10 ** lTokenDDecimal / 10 ** lTokenCDecimal / WAD
: lExpectedAmtCOut * WAD * 10 ** lTokenDDecimal / lPrice3 / 10 ** lTokenCDecimal;

assertEq(lAmtDOut, lExpectedAmtDOut);
}
Expand Down

0 comments on commit b7016e6

Please sign in to comment.