Skip to content

Commit

Permalink
Fix test_Revert_IfSignatureIsInvalid
Browse files Browse the repository at this point in the history
  • Loading branch information
wshino committed Oct 24, 2024
1 parent 1481070 commit 3efb454
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ contract ECDSAOwnedDKIMRegistryTest_revokeDKIMPublicKeyHash is Test {

// Attempt to revoke with an invalid signature
bytes memory invalidSignature = abi.encodePacked(r, s, v + 1); // Alter the signature
vm.expectRevert(ECDSA.ECDSAInvalidSignature.selector);
vm.expectRevert("Invalid signature");
dkim.revokeDKIMPublicKeyHash(
selector,
domainName,
Expand Down

0 comments on commit 3efb454

Please sign in to comment.