Skip to content

Commit

Permalink
fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
omahs authored Jan 3, 2024
1 parent b2e790d commit 27e5530
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/hardhat-chai-matchers/test/events.ts
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ describe(".to.emit (contract events)", () => {
.withArgs(hash(string1Bytes))
).to.be.eventually.rejectedWith(
AssertionError,
"The actual value was an indexed and hashed value of the event argument. The expected value provided to the assertion should be the actual event argument (the pre-image of the hash). You provided the hash itself. Please supply the the actual event argument (the pre-image of the hash) instead."
"The actual value was an indexed and hashed value of the event argument. The expected value provided to the assertion should be the actual event argument (the pre-image of the hash). You provided the hash itself. Please supply the actual event argument (the pre-image of the hash) instead."
);
});

Expand Down Expand Up @@ -329,7 +329,7 @@ describe(".to.emit (contract events)", () => {
.withArgs(hash(string1Bytes))
).to.be.eventually.rejectedWith(
AssertionError,
"The actual value was an indexed and hashed value of the event argument. The expected value provided to the assertion should be the actual event argument (the pre-image of the hash). You provided the hash itself. Please supply the the actual event argument (the pre-image of the hash) instead."
"The actual value was an indexed and hashed value of the event argument. The expected value provided to the assertion should be the actual event argument (the pre-image of the hash). You provided the hash itself. Please supply the actual event argument (the pre-image of the hash) instead."
);
});
});
Expand Down

0 comments on commit 27e5530

Please sign in to comment.