diff --git a/l1-contracts/test/foundry/l1/integration/DeploymentTest.t.sol b/l1-contracts/test/foundry/l1/integration/DeploymentTest.t.sol index 1c8bba297..c7ef28dad 100644 --- a/l1-contracts/test/foundry/l1/integration/DeploymentTest.t.sol +++ b/l1-contracts/test/foundry/l1/integration/DeploymentTest.t.sol @@ -139,12 +139,12 @@ contract DeploymentTests is L1ContractDeployer, ZKChainDeployer, TokenDeployer, address bridgehubStmForChain = bridgehub.chainTypeManager(chainId); bytes32 bridgehubBaseAssetIdForChain = bridgehub.baseTokenAssetId(chainId); - address bridgehubChainAddressdForChain = bridgehub.getZKChain(chainId); + address bridgehubChainAddressForChain = bridgehub.getZKChain(chainId); address bhAddr = IZKChain(chain).getBridgehub(); assertEq(bridgehubStmForChain, stmAddr); assertEq(bridgehubBaseAssetIdForChain, baseTokenAssetId); - assertEq(bridgehubChainAddressdForChain, chain); + assertEq(bridgehubChainAddressForChain, chain); assertEq(bhAddr, address(bridgehub)); }