Skip to content

Commit

Permalink
More styling fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
sunbreak1211 committed Sep 20, 2024
1 parent 9c594f0 commit 614f694
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion test/FlapperUniV2.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ contract FlapperUniV2Test is DssTest {
_medianizer.setPrice(price);
changeUniV2Price(price, gem, pair);
(reserveUsds, ) = UniswapV2Library.getReserves(UNIV2_FACTORY, USDS, gem);
if(reserveUsds < minimalUsdsReserve) {
if (reserveUsds < minimalUsdsReserve) {
topUpLiquidity(minimalUsdsReserve - reserveUsds, gem, pair);
}
} else {
Expand Down
2 changes: 1 addition & 1 deletion test/FlapperUniV2SwapOnly.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ contract FlapperUniV2SwapOnlyTest is DssTest {
_medianizer.setPrice(price);
changeUniV2Price(price, gem, pair);
(reserveUsds, ) = UniswapV2Library.getReserves(UNIV2_FACTORY, USDS, gem);
if(reserveUsds < minimalUsdsReserve) {
if (reserveUsds < minimalUsdsReserve) {
topUpLiquidity(minimalUsdsReserve - reserveUsds, gem, pair);
}
} else {
Expand Down
2 changes: 1 addition & 1 deletion test/Splitter.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ contract SplitterTest is DssTest {
changeMedianizerPrice(727 * WAD);
changeUniV2Price(medianizer.read(), SKY, UNIV2_SKY_USDS_PAIR);
(reserveUsds, ) = UniswapV2Library.getReserves(UNIV2_FACTORY, USDS, SKY);
if(reserveUsds < minimalUsdsReserve) {
if (reserveUsds < minimalUsdsReserve) {
topUpLiquidity(minimalUsdsReserve - reserveUsds, SKY, UNIV2_SKY_USDS_PAIR);
}
} else {
Expand Down

0 comments on commit 614f694

Please sign in to comment.