From 7ab778cd9629baa93d516c23f7030cc3d7d81870 Mon Sep 17 00:00:00 2001 From: Yaroslav Bolyukin Date: Thu, 29 Jul 2021 12:54:11 +0000 Subject: [PATCH] test: fix pallet list --- --- a/tests/src/pallet-presence.test.ts +++ b/tests/src/pallet-presence.test.ts @@ -23,6 +23,9 @@ 'parachainsystem', 'parachaininfo', 'evm', + 'evmcodersubstrate', + 'evmcontracthelpers', + 'evmtransactionpayment', 'ethereum', 'xcmpqueue', 'polkadotxcm', @@ -59,7 +62,7 @@ }); it('No extra pallets are included', async () => { await usingApi(async api => { - expect(getModuleNames(api).length).to.be.equal(requiredPallets.length + consensusPallets.length); + expect(getModuleNames(api).sort()).to.be.deep.equal([...requiredPallets, ...consensusPallets].sort()); }); }); }); -- gitstuff