Skip to content

Commit

Permalink
tests: fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tynes committed Aug 7, 2024
1 parent 90a8070 commit cfbd67a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/contracts-bedrock/test/L2/CrossL2Inbox.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ contract CrossL2InboxTest is Test {
vm.expectCall({ callee: _target, msgValue: _value, data: _message });

// Look for the emit ExecutingMessage event
vm.expectEmit(true, true, true, true, Predeploys.CROSS_L2_INBOX);
vm.expectEmit(Predeploys.CROSS_L2_INBOX);
emit CrossL2Inbox.ExecutingMessage(keccak256(_message), _id);

// Call the executeMessage function
Expand Down Expand Up @@ -283,7 +283,7 @@ contract CrossL2InboxTest is Test {
});

// Look for the emit ExecutingMessage event
vm.expectEmit(true, true, true, true, Predeploys.CROSS_L2_INBOX);
vm.expectEmit(Predeploys.CROSS_L2_INBOX);
emit CrossL2Inbox.ExecutingMessage(_messageHash, _id);

// Call the validateMessage function
Expand Down

0 comments on commit cfbd67a

Please sign in to comment.