Skip to content

Commit 1325b54

Browse files
committed
fmt: fix
1 parent 7eed076 commit 1325b54

File tree

1 file changed

+14
-2
lines changed

1 file changed

+14
-2
lines changed

test/deployment/ChangeOwnerToTimelock.t.sol

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -380,7 +380,14 @@ contract SplitChangeOwnerToTimelockTest is Test {
380380
proxyAdmin,
381381
abi.encodeCall(
382382
CollateralManagementContract.initialize,
383-
(admin_, cfg.adminDelay, cfg.minimumCollateral, cfg.resignDelayBlocks, cfg.rewardPercentage, PauseRegistry(pauseRegistryProxy))
383+
(
384+
admin_,
385+
cfg.adminDelay,
386+
cfg.minimumCollateral,
387+
cfg.resignDelayBlocks,
388+
cfg.rewardPercentage,
389+
PauseRegistry(pauseRegistryProxy)
390+
)
384391
)
385392
)
386393
);
@@ -398,7 +405,12 @@ contract SplitChangeOwnerToTimelockTest is Test {
398405
proxyAdmin,
399406
abi.encodeCall(
400407
FlyoverDiscovery.initialize,
401-
(admin_, cfg.adminDelay, address(collateralManagement), PauseRegistry(pauseRegistryProxy))
408+
(
409+
admin_,
410+
cfg.adminDelay,
411+
address(collateralManagement),
412+
PauseRegistry(pauseRegistryProxy)
413+
)
402414
)
403415
)
404416
);

0 commit comments

Comments
 (0)