Skip to content

Commit

Permalink
refactor: remove assert error message
Browse files Browse the repository at this point in the history
  • Loading branch information
amusingaxl committed Nov 4, 2024
1 parent e37bf81 commit a65e44b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/DssVest.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ contract DssVestTest is DSTest {
keccak256(abi.encode(address(boss), uint(2))),
bytes32(uint256(10000 * WAD))
);
assertEq(usds.balanceOf(address(boss)), 10000 * WAD, "Failed to check usds balance");
assertEq(usds.balanceOf(address(boss)), 10000 * WAD);
}

function testCost() public {
Expand Down

0 comments on commit a65e44b

Please sign in to comment.