Skip to content

Commit

Permalink
test: fix test name
Browse files Browse the repository at this point in the history
  • Loading branch information
agusduha committed Aug 29, 2024
1 parent 9fcb52b commit cceb6c3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/contracts-bedrock/test/L2/SuperchainERC20.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ contract SuperchainERC20Test is Test {
vm.expectCall(_receiver, _calldata);
}

/// @notice Test that the contract's `initializer` sets the correct values.
function test_initializer_succeeds() public view {
/// @notice Test that the contract's `constructor` sets the correct values.
function test_constructor_succeeds() public view {
assertEq(superchainERC20.name(), NAME);
assertEq(superchainERC20.symbol(), SYMBOL);
assertEq(superchainERC20.decimals(), DECIMALS);
Expand Down

0 comments on commit cceb6c3

Please sign in to comment.