Skip to content

Commit

Permalink
test: set dollarOutMin>99 at testMintDollar_FuzzDollarAmountSlippage
Browse files Browse the repository at this point in the history
  • Loading branch information
gitcoindev committed Jun 16, 2024
1 parent fce4ecb commit 62d4c8a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ contract UbiquityPoolFacetFuzzTest is DiamondTestSetup {
function testMintDollar_FuzzDollarAmountSlippage(
uint256 dollarOutMin
) public {
vm.assume(dollarOutMin >= 99e18);
vm.assume(dollarOutMin > 99e18);
vm.prank(admin);
curveDollarPlainPool.updateMockParams(1.01e18);
vm.prank(user);
Expand Down

0 comments on commit 62d4c8a

Please sign in to comment.