Skip to content

Commit 77a42f2

Browse files
authored
test: fix revert at a lower depth than cheatcode call depth (#67)
1 parent b5f6ef7 commit 77a42f2

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

test/LibWasm.t.sol

+10-2
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,11 @@ contract LibWasmTest is Test {
296296
);
297297
bytes memory expectedError = abi.encodeWithSelector(InvalidValue.selector, "Length exceeds max size of 255");
298298
vm.expectRevert(expectedError);
299-
LibWasm.encodeCborBytesArray(data);
299+
this.externalEncodeCborBytesArray(data); // Call through external function
300+
}
301+
302+
function externalEncodeCborBytesArray(bytes memory data) external pure returns (bytes memory) {
303+
return LibWasm.encodeCborBytesArray(data);
300304
}
301305

302306
function testEncodeCborIrohNodeId() public pure {
@@ -362,7 +366,11 @@ contract LibWasmTest is Test {
362366
bytes memory expectedError = abi.encodeWithSelector(InvalidValue.selector, "value * 1e18 overflows uint256");
363367
vm.expectRevert(expectedError);
364368
value = 1000000000000000000000000000000000000000000000000000000000000000000000000;
365-
result = LibWasm.encodeCborUint256AsBytes(value, true);
369+
this.externalEncodeCborUint256AsBytes(value, true);
370+
}
371+
372+
function externalEncodeCborUint256AsBytes(uint256 value, bool padding) external pure returns (bytes memory) {
373+
return LibWasm.encodeCborUint256AsBytes(value, padding);
366374
}
367375

368376
function testDecodeCborByteStringToUint64() public pure {

0 commit comments

Comments
 (0)