Skip to content

Commit 7e3633c

Browse files
committed
chore: run forge fmt
1 parent b4c50aa commit 7e3633c

1 file changed

Lines changed: 3 additions & 12 deletions

File tree

test/universal/MultisigScriptDeposit.t.sol

Lines changed: 3 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -229,27 +229,18 @@ contract MultisigScriptDepositTest is Test, MultisigScriptDeposit {
229229
function _buildSingleL2CallNoValue() internal view returns (IMulticall3.Call3Value[] memory) {
230230
IMulticall3.Call3Value[] memory calls = new IMulticall3.Call3Value[](1);
231231
calls[0] = IMulticall3.Call3Value({
232-
target: testL2Target,
233-
allowFailure: false,
234-
callData: abi.encodeCall(Counter.increment, ()),
235-
value: 0
232+
target: testL2Target, allowFailure: false, callData: abi.encodeCall(Counter.increment, ()), value: 0
236233
});
237234
return calls;
238235
}
239236

240237
function _buildMultipleL2CallsNoValue() internal view returns (IMulticall3.Call3Value[] memory) {
241238
IMulticall3.Call3Value[] memory calls = new IMulticall3.Call3Value[](3);
242239
calls[0] = IMulticall3.Call3Value({
243-
target: testL2Target,
244-
allowFailure: false,
245-
callData: abi.encodeCall(Counter.increment, ()),
246-
value: 0
240+
target: testL2Target, allowFailure: false, callData: abi.encodeCall(Counter.increment, ()), value: 0
247241
});
248242
calls[1] = IMulticall3.Call3Value({
249-
target: testL2Target,
250-
allowFailure: false,
251-
callData: abi.encodeCall(Counter.increment, ()),
252-
value: 0
243+
target: testL2Target, allowFailure: false, callData: abi.encodeCall(Counter.increment, ()), value: 0
253244
});
254245
calls[2] = IMulticall3.Call3Value({
255246
target: testL2Target,

0 commit comments

Comments
 (0)