Skip to content

Commit 36e7c69

Browse files
committed
fmt
1 parent 6529a54 commit 36e7c69

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

test/Deploy.t.sol

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ contract Deploy_Test is Test {
1717
function test_deploy() public {
1818
Escrow escrow = deployer.run();
1919

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.feeRecipient(), Params.OWNER, "Incorrect fee recipient");
24-
assertEq (escrow.protocolFeeBps(), Params.BASE_FEE_BPS, "Incorrect fee");
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.feeRecipient(), Params.OWNER, "Incorrect fee recipient");
24+
assertEq (escrow.protocolFeeBps(), Params.BASE_FEE_BPS, "Incorrect fee");
2525
}
2626
}

0 commit comments

Comments
 (0)