Skip to content

Commit

Permalink
fix: optimize test time
Browse files Browse the repository at this point in the history
  • Loading branch information
QEDK committed Jan 14, 2024
1 parent 1fb8b5a commit 66ac2a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/AvailBridgeTest.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,7 @@ contract AvailBridgeTest is Test, MurkyBase {
assertEq(newBalance, balance + amount);
}

function testRevertExceedsMaxDataLength_sendMessage(bytes32 to, bytes[102_400] calldata c_data, uint256 amount)
function testRevertExceedsMaxDataLength_sendMessage(bytes32 to, bytes32[3200] calldata c_data, uint256 amount)
external
{
bytes memory data = abi.encode(c_data);
Expand Down

0 comments on commit 66ac2a8

Please sign in to comment.