Skip to content

Commit

Permalink
test: add erc20 asserts
Browse files Browse the repository at this point in the history
  • Loading branch information
agusduha committed Aug 22, 2024
1 parent 1e9b062 commit 0e2633a
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,9 @@ contract OptimismSuperchainERC20FactoryTest is Test {
// Assert
assertTrue(addr == deployment);
assertTrue(OptimismSuperchainERC20(deployment).decimals() == _decimals);
assertTrue(OptimismSuperchainERC20(deployment).remoteToken() == _remoteToken);
assertEq(OptimismSuperchainERC20(deployment).name(), _name);
assertEq(OptimismSuperchainERC20(deployment).symbol(), _symbol);
assertEq(superchainERC20Factory.deployments(deployment), _remoteToken);
}

Expand Down

0 comments on commit 0e2633a

Please sign in to comment.