Skip to content

Commit

Permalink
Update ERC721.behavior.js (OpenZeppelin#2801)
Browse files Browse the repository at this point in the history
  • Loading branch information
fulldecent authored Aug 5, 2021
1 parent 48375aa commit d89f2a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/token/ERC721/ERC721.behavior.js
Original file line number Diff line number Diff line change
Expand Up @@ -678,7 +678,7 @@ function shouldBehaveLikeERC721 (errorPrefix, owner, newOwner, approved, another
describe('_burn', function () {
it('reverts when burning a non-existent token id', async function () {
await expectRevert(
this.token.burn(firstTokenId), 'ERC721: owner query for nonexistent token',
this.token.burn(nonExistentTokenId), 'ERC721: owner query for nonexistent token',
);
});

Expand Down

0 comments on commit d89f2a4

Please sign in to comment.