Skip to content
This repository has been archived by the owner on Nov 5, 2023. It is now read-only.

Commit

Permalink
Use mint instead of safeMint to fix failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnGuilding committed Feb 23, 2023
1 parent 8115cc7 commit 9bcab53
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -419,9 +419,7 @@ describe("Signer contract interaction tests", function () {
const spender = mockTokenSpender.address;
const tokenId = 7;

const mint = await mockERC721
.connect(blsSigners[0])
.safeMint(owner, tokenId);
const mint = await mockERC721.connect(blsSigners[0]).mint(owner, tokenId);
await mint.wait();

const transactionBatch = {
Expand Down

0 comments on commit 9bcab53

Please sign in to comment.