From 13ad7128973867c31850b798d48877d1107efdcf Mon Sep 17 00:00:00 2001 From: Yaroslav Bolyukin Date: Thu, 29 Dec 2022 10:45:37 +0000 Subject: [PATCH] test: fix pallet presence for sapphire --- --- a/tests/src/pallet-presence.test.ts +++ b/tests/src/pallet-presence.test.ts @@ -68,7 +68,7 @@ const appPromotion = 'apppromotion'; const testUtils = 'testutils'; - if (chain.eq('OPAL by UNIQUE') || chain.eq('SAPPHIRE by UNIQUE')) { + if (chain.eq('OPAL by UNIQUE')) { requiredPallets.push( refungible, foreignAssets, @@ -76,7 +76,7 @@ testUtils, ...rmrkPallets, ); - } else if (chain.eq('QUARTZ by UNIQUE')) { + } else if (chain.eq('QUARTZ by UNIQUE') || chain.eq('SAPPHIRE by UNIQUE')) { requiredPallets.push( refungible, appPromotion, -- gitstuff