From cee07ac986b1747420462148e344d9e5e2478da0 Mon Sep 17 00:00:00 2001 From: Daniel Shiposha Date: Thu, 13 Oct 2022 07:57:34 +0000 Subject: [PATCH] fix: remove special case of test pallets --- --- a/tests/src/pallet-presence.test.ts +++ b/tests/src/pallet-presence.test.ts @@ -49,10 +49,6 @@ 'xtokens', ]; -const testPallets = [ - 'testutils', -]; - // Pallets that depend on consensus and governance configuration const consensusPallets = [ 'sudo', @@ -91,10 +87,6 @@ itSub('Required pallets are present', async ({helper}) => { expect(helper.fetchAllPalletNames()).to.contain.members([...requiredPallets]); - }); - - itSub('Test pallets are present', async ({helper}) => { - expect(helper.fetchAllPalletNames()).to.contain.members([...testPallets]); }); itSub('Governance and consensus pallets are present', async ({helper}) => { -- gitstuff