Skip to content

Commit a65e44b

Browse files
committed
refactor: remove assert error message
1 parent e37bf81 commit a65e44b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/DssVest.t.sol

+1-1
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ contract DssVestTest is DSTest {
169169
keccak256(abi.encode(address(boss), uint(2))),
170170
bytes32(uint256(10000 * WAD))
171171
);
172-
assertEq(usds.balanceOf(address(boss)), 10000 * WAD, "Failed to check usds balance");
172+
assertEq(usds.balanceOf(address(boss)), 10000 * WAD);
173173
}
174174

175175
function testCost() public {

0 commit comments

Comments
 (0)