Skip to content

Commit

Permalink
test: add WETH address check in DFMM
Browse files Browse the repository at this point in the history
  • Loading branch information
clemlak committed Feb 27, 2024
1 parent 7c62c99 commit ef054f0
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/test/unit/DFMM/Constructor.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,8 @@ contract DFMMConstructorTest is DFMMSetUp {
assertEq(lpToken.symbol(), "");
assertEq(lpToken.decimals(), 18);
}

function test_DFMM_constructor_StoresWETHAddress() public {
assertEq(dfmm.weth(), address(weth));
}
}

0 comments on commit ef054f0

Please sign in to comment.