Skip to content

Commit

Permalink
test(SimpleBudget): update balance verification comment
Browse files Browse the repository at this point in the history
  • Loading branch information
mmackz committed Sep 9, 2024
1 parent 36b82f8 commit 502a357
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions packages/evm/test/budgets/SimpleBudget.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -606,9 +606,8 @@ contract SimpleBudgetTest is Test, IERC1155Receiver {
);
simpleBudget.disburse(disburseData);

// Verify balances haven't changed
// Verify balance of budget hasn't changed
assertEq(mockERC1155.balanceOf(address(simpleBudget), tokenId), initialAmount);
assertEq(mockERC1155.balanceOf(address(0xdead), tokenId), 0);
}

function testDisburse_ImproperData() public {
Expand Down

0 comments on commit 502a357

Please sign in to comment.