--- a/tests/src/rmrk/rmrk.test.ts +++ b/tests/src/rmrk/rmrk.test.ts @@ -225,8 +225,9 @@ await expect(executeTransaction(api, alice, txChangeOwner), 'changing collection issuer') .to.be.rejectedWith(/rmrkCore\.CollectionUnknown/); - const txBurnItem = api.tx.rmrkCore.burnNft(collectionId, nftId); + const maxBurns = 10; + const txBurnItem = api.tx.rmrkCore.burnNft(collectionId, nftId, maxBurns); await expect(executeTransaction(api, alice, txBurnItem), 'burning NFT').to.be.rejectedWith(/rmrkCore\.CollectionUnknown/); }); }); -}); \ No newline at end of file +});