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>
This commit is contained in:
renovate[bot]
2020-11-30 16:16:58 -03:00
committed by GitHub
parent acac4a7fca
commit 60c8b0e02f
2 changed files with 282 additions and 195 deletions

View File

@ -80,7 +80,7 @@ contract('ERC1155Pausable', function (accounts) {
it('reverts when trying to burnBatch', async function () {
await expectRevert(
this.token.burn(holder, [firstTokenId], [firstTokenAmount]),
this.token.burnBatch(holder, [firstTokenId], [firstTokenAmount]),
'ERC1155Pausable: token transfer while paused',
);
});