From 6cd5442f9660b0d92ef6d69ffc80be0b737e7980 Mon Sep 17 00:00:00 2001 From: raulk Date: Thu, 2 Jan 2025 14:55:53 +0000 Subject: [PATCH] make fmt. --- contracts/test/integration/MultiSubnet.t.sol | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/contracts/test/integration/MultiSubnet.t.sol b/contracts/test/integration/MultiSubnet.t.sol index c0470ce17..26381cda3 100644 --- a/contracts/test/integration/MultiSubnet.t.sol +++ b/contracts/test/integration/MultiSubnet.t.sol @@ -124,14 +124,15 @@ contract MultiSubnetTest is Test, IntegrationTestBase { SubnetID memory tokenSubnetName = SubnetID({root: ROOTNET_CHAINID, route: tokenSubnetPath}); GatewayDiamond tokenSubnetGateway = createGatewayDiamond(gatewayParams(tokenSubnetName)); - return TestSubnetDefinition({ - gateway: tokenSubnetGateway, - gatewayAddr: address(tokenSubnetGateway), - id: tokenSubnetName, - subnetActor: rootTokenSubnetActor, - subnetActorAddr: address(rootTokenSubnetActor), - path: tokenSubnetPath - }); + return + TestSubnetDefinition({ + gateway: tokenSubnetGateway, + gatewayAddr: address(tokenSubnetGateway), + id: tokenSubnetName, + subnetActor: rootTokenSubnetActor, + subnetActorAddr: address(rootTokenSubnetActor), + path: tokenSubnetPath + }); } //--------------------