Skip to content

Commit

Permalink
test: fix expect emit
Browse files Browse the repository at this point in the history
  • Loading branch information
agusduha committed Aug 23, 2024
1 parent b210604 commit 49b3ca8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ contract OptimismSuperchainERC20FactoryTest is Test {
bytes32 salt = keccak256(abi.encode(_remoteToken, _name, _symbol, _decimals));
address deployment = _calculateTokenAddress(salt, address(superchainERC20Factory));

vm.expectEmit(true, true, true, true);
vm.expectEmit(address(superchainERC20Factory));
emit OptimismSuperchainERC20Factory.OptimismSuperchainERC20Created(deployment, _remoteToken, _caller);

// Act
Expand Down

0 comments on commit 49b3ca8

Please sign in to comment.