From a65e44b87ab3aa739e39edaebe22c40d2f80bf20 Mon Sep 17 00:00:00 2001 From: amusingaxl <112016538+amusingaxl@users.noreply.github.com> Date: Mon, 4 Nov 2024 11:23:21 -0300 Subject: [PATCH] refactor: remove assert error message --- src/DssVest.t.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/DssVest.t.sol b/src/DssVest.t.sol index 3ff9eba4..60a1dbfc 100644 --- a/src/DssVest.t.sol +++ b/src/DssVest.t.sol @@ -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 {