We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fbfd5a5 commit 01436d1Copy full SHA for 01436d1
packages/contracts-bedrock/test/L1/BatchInbox.t.sol
@@ -117,7 +117,9 @@ contract BatchInbox_Fallback_Test is BatchInbox_Test {
117
(bool success, bytes memory returnData) = address(inbox).call("unauthorized");
118
assertFalse(success, "Should revert");
119
// Check the revert reason
120
- assertEq(string(returnData), string(abi.encodeWithSignature("Error(string)", "BatchInbox: unauthorized batcher")));
+ assertEq(
121
+ string(returnData), string(abi.encodeWithSignature("Error(string)", "BatchInbox: unauthorized batcher"))
122
+ );
123
}
124
125
/// @notice Test that TEE batcher requires authentication
0 commit comments