Simplify ESLint config (#3903)

This commit is contained in:
Francisco
2022-12-29 17:08:12 -03:00
committed by GitHub
parent cc27aed391
commit 2336bd3e8e
26 changed files with 515 additions and 1082 deletions

View File

@ -83,7 +83,7 @@ function shouldBehaveLikeERC721 (errorPrefix, owner, newOwner, approved, another
await this.token.setApprovalForAll(operator, true, { from: owner });
});
const transferWasSuccessful = function ({ owner, tokenId, approved }) {
const transferWasSuccessful = function ({ owner, tokenId }) {
it('transfers the ownership of the given token ID to the given address', async function () {
expect(await this.token.ownerOf(tokenId)).to.be.equal(this.toWhom);
});