From feb145783dcf563a8beb0502becc6d010223cbe5 Mon Sep 17 00:00:00 2001 From: Yaroslav Bolyukin Date: Thu, 28 Oct 2021 10:18:25 +0000 Subject: [PATCH] test: remove invalid test --- --- a/tests/src/setCollectionLimits.test.ts +++ b/tests/src/setCollectionLimits.test.ts @@ -166,20 +166,6 @@ await expect(submitTransactionExpectFailAsync(bob, tx)).to.be.rejected; }); }); - it('execute setCollectionLimits with incorrect limits', async () => { - await usingApi(async (api: ApiPromise) => { - tx = api.tx.nft.setCollectionLimits( - collectionIdForTesting, - { - accountTokenOwnershipLimit: 'awdawd', - sponsorTransferTimeout: 'awd', - sponsoredDataSize: '12312312312312312', - tokenLimit: '-100', - }, - ); - await expect(submitTransactionExpectFailAsync(alice, tx)).to.be.rejected; - }); - }); it('fails when trying to enable OwnerCanTransfer after it was disabled', async () => { const collectionId = await createCollectionExpectSuccess(); -- gitstuff