Skip to content

Commit

Permalink
fix test since we mint in the earlier test now
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanio committed Apr 4, 2024
1 parent b05a9ec commit 221a576
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions test/ERC721ContractMetadata.spec.ts
Expand Up @@ -187,13 +187,6 @@ describe(`ERC721ContractMetadata (v${VERSION})`, function () {
token.connect(owner).setBaseURI("http://example.com/")
).to.emit(token, "BatchMetadataUpdate");

await whileImpersonating(
seadrop.address,
provider,
async (impersonatedSigner) => {
await token.connect(impersonatedSigner).mintSeaDrop(owner.address, 2);
}
);
expect(await token.baseURI()).to.equal("http://example.com/");
expect(await token.tokenURI(1)).to.equal("http://example.com/1");
expect(await token.tokenURI(2)).to.equal("http://example.com/2");
Expand Down

0 comments on commit 221a576

Please sign in to comment.