Skip to content

Commit 01436d1

Browse files
Fix solidity formatting.
1 parent fbfd5a5 commit 01436d1

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

packages/contracts-bedrock/test/L1/BatchInbox.t.sol

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,9 @@ contract BatchInbox_Fallback_Test is BatchInbox_Test {
117117
(bool success, bytes memory returnData) = address(inbox).call("unauthorized");
118118
assertFalse(success, "Should revert");
119119
// Check the revert reason
120-
assertEq(string(returnData), string(abi.encodeWithSignature("Error(string)", "BatchInbox: unauthorized batcher")));
120+
assertEq(
121+
string(returnData), string(abi.encodeWithSignature("Error(string)", "BatchInbox: unauthorized batcher"))
122+
);
121123
}
122124

123125
/// @notice Test that TEE batcher requires authentication

0 commit comments

Comments
 (0)