We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4a44cd3 commit baa5f12Copy full SHA for baa5f12
test/Deploy.t.sol
@@ -20,6 +20,7 @@ contract Deploy_Test is Test {
20
assertTrue(address(escrow) != address(0), "Escrow not deployed");
21
assertTrue(escrow.isTokenWhitelisted(Params.BASE_USDC), "WETH not whitelisted");
22
assertEq (escrow.owner(), Params.OWNER, "Incorrect owner");
23
+ assertEq (escrow.signer(), Params.SIGNER, "Incorrect signer");
24
assertEq (escrow.feeRecipient(), Params.OWNER, "Incorrect fee recipient");
25
assertEq (escrow.protocolFeeBps(), Params.BASE_FEE_BPS, "Incorrect fee");
26
}
0 commit comments