From dacc78c13c14c21bb982c258691a81e73bfc2410 Mon Sep 17 00:00:00 2001 From: Daniel Shiposha Date: Fri, 10 Jun 2022 17:12:18 +0000 Subject: [PATCH] fix(rmrk): test --- --- 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 +}); -- gitstuff