Skip to content

Commit

Permalink
fix: change false notice example
Browse files Browse the repository at this point in the history
  • Loading branch information
guidanoli committed Nov 2, 2023
1 parent caff1bf commit 8c0a23e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion onchain/rollups/test/foundry/dapp/CartesiDApp.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ contract CartesiDAppTest is TestBase {
assertEq(ret, true);

// reverts if notice is incorrect
bytes memory falseNotice = abi.encodePacked(bytes4(0xdeaddead));
bytes memory falseNotice = bytes("foobar");
vm.expectRevert(
LibOutputValidation.IncorrectOutputHashesRootHash.selector
);
Expand Down

0 comments on commit 8c0a23e

Please sign in to comment.