Skip to content

Commit

Permalink
test: fix test case
Browse files Browse the repository at this point in the history
  • Loading branch information
xorsal committed Nov 21, 2024
1 parent c29fbb4 commit d9bee52
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions solidity/test/integration/AccountingExtension.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,7 @@ contract Integration_AccountingExtension is IntegrationBase {
* @notice Depositing more than the user's balance should revert
*/
function test_depositERC20_invalidAmount() public {
uint256 _invalidDepositAmount = 1.1 ether;
// uint256 _initialBalance = 1 ether;
uint256 _invalidDepositAmount = _initialBalance + 1;

vm.assume(_invalidDepositAmount > _initialBalance);
deal(address(usdc), user, _initialBalance);
Expand Down

0 comments on commit d9bee52

Please sign in to comment.