Skip to content

Commit

Permalink
test: adjust tests
Browse files Browse the repository at this point in the history
  • Loading branch information
QEDK committed Feb 13, 2024
1 parent b2b48af commit 63e67c7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/AvailBridgeTest.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -690,7 +690,7 @@ contract AvailBridgeTest is Test, MurkyBase {
assertEq(bridge.fees(), 0);
}

function test_sendAVAIL(bytes32 to, uint256 amount) external {
function test_sendAVAIL(bytes32 to, uint128 amount) external {
vm.assume(to != bytes32(0) && amount != 0);
address from = makeAddr("from");
vm.prank(address(bridge));
Expand Down Expand Up @@ -733,7 +733,7 @@ contract AvailBridgeTest is Test, MurkyBase {
bridge.sendERC20(assetId, dest, amount);
}

function test_sendERC20(bytes32 assetId, bytes32 to, uint256 amount) external {
function test_sendERC20(bytes32 assetId, bytes32 to, uint128 amount) external {
vm.assume(to != bytes32(0) && amount != 0);
address from = makeAddr("from");
ERC20Mock token = new ERC20Mock();
Expand Down

0 comments on commit 63e67c7

Please sign in to comment.