Skip to content

Commit

Permalink
test(pool-facet-handler): deted hard params for redeemDollar
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandr-masl committed Sep 2, 2024
1 parent 26abd14 commit dfff4f3
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,11 @@ contract PoolFacetHandler is Test {
vm.assume(_collateralOutMin >= 0 && _collateralOutMin <= _dollarAmount);

vm.prank(user);
ubiquityPoolFacet.redeemDollar(0, 0.1e18, 0, 0);
ubiquityPoolFacet.redeemDollar(
0,
_dollarAmount,
_governanceOutMin,
_collateralOutMin
);
}
}

0 comments on commit dfff4f3

Please sign in to comment.