Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
sunbreak1211 committed Sep 20, 2024
1 parent 7629509 commit 9c594f0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/FlapperUniV2.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ contract FlapperUniV2Test is DssTest {
vow = VowLike(ChainlogLike(LOG).getAddress("MCD_VOW"));

UNIV2_USDS_IMX_PAIR = UniV2FactoryLike(UNIV2_FACTORY).getPair(USDS, IMX);
if(UNIV2_USDS_IMX_PAIR == address(0)) {
if (UNIV2_USDS_IMX_PAIR == address(0)) {
UNIV2_USDS_IMX_PAIR = UniV2FactoryLike(UNIV2_FACTORY).createPair(USDS, IMX);
}

Expand Down
2 changes: 1 addition & 1 deletion test/FlapperUniV2SwapOnly.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ contract FlapperUniV2SwapOnlyTest is DssTest {
vow = VowLike(ChainlogLike(LOG).getAddress("MCD_VOW"));

UNIV2_USDS_IMX_PAIR = UniV2FactoryLike(UNIV2_FACTORY).getPair(USDS, IMX);
if(UNIV2_USDS_IMX_PAIR == address(0)) {
if (UNIV2_USDS_IMX_PAIR == address(0)) {
UNIV2_USDS_IMX_PAIR = UniV2FactoryLike(UNIV2_FACTORY).createPair(USDS, IMX);
}

Expand Down

0 comments on commit 9c594f0

Please sign in to comment.