Unverified Commit 60c8b0e0 by renovate[bot] Committed by GitHub

Update lockfile (#2416)

* Update lockfile

* fix ERC1155Pausable test

Co-authored-by: Renovate Bot <bot@renovateapp.com>
Co-authored-by: Francisco Giordano <frangio.1@gmail.com>
parent acac4a7f
...@@ -80,7 +80,7 @@ contract('ERC1155Pausable', function (accounts) { ...@@ -80,7 +80,7 @@ contract('ERC1155Pausable', function (accounts) {
it('reverts when trying to burnBatch', async function () { it('reverts when trying to burnBatch', async function () {
await expectRevert( await expectRevert(
this.token.burn(holder, [firstTokenId], [firstTokenAmount]), this.token.burnBatch(holder, [firstTokenId], [firstTokenAmount]),
'ERC1155Pausable: token transfer while paused', 'ERC1155Pausable: token transfer while paused',
); );
}); });
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment