Skip to content

Commit

Permalink
chore: make bun happy
Browse files Browse the repository at this point in the history
  • Loading branch information
0xteddybear committed Jul 22, 2024
1 parent 1138001 commit 898d135
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions test/unit/BCoWPool/BCoWPool_Verify.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -123,9 +123,9 @@ contract BCoWPoolVerify is BCoWPoolBase {
function test_WhenPreconditionsAreMet(uint256 _sellAmount) external {
_sellAmount = bound(_sellAmount, 0, validOrder.sellAmount);
validOrder.sellAmount = _sellAmount;
// it should ask the balance of the buy token
// it should query the balance of the buy token
vm.expectCall(tokenIn, abi.encodeCall(IERC20.balanceOf, (address(bCoWPool))));
// it should ask the balance of the sell token
// it should query the balance of the sell token
vm.expectCall(tokenOut, abi.encodeCall(IERC20.balanceOf, (address(bCoWPool))));
bCoWPool.verify(validOrder);
}
Expand Down
4 changes: 2 additions & 2 deletions test/unit/BCoWPool/BCoWPool_Verify.tree
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ BCoWPool::Verify
├── when calculated token amount out is less than order sell amount
│ └── it should revert
└── when preconditions are met
├── it should ask the balance of the buy token
└── it should ask the balance of the sell token
├── it should query the balance of the buy token
└── it should query the balance of the sell token

0 comments on commit 898d135

Please sign in to comment.