Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
nikitastupin-matterlabs committed Nov 12, 2024
1 parent 7fb81ec commit 5865717
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions l1-contracts/test/foundry/l1/integration/DeploymentTest.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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));
}

Expand Down

0 comments on commit 5865717

Please sign in to comment.