From 85e2544b8d1969fb6fed16cfd3d8c3d556d0f420 Mon Sep 17 00:00:00 2001 From: Max Andreev Date: Thu, 13 Oct 2022 14:09:56 +0000 Subject: [PATCH] Fix app-promotion tests for a sequential launch --- --- a/tests/src/app-promotion.seqtest.ts +++ b/tests/src/app-promotion.seqtest.ts @@ -34,6 +34,13 @@ }); }); + after(async () => { + await usingPlaygrounds(async (helper) => { + const api = helper.getApi(); + await helper.signTransaction(superuser, api.tx.sudo.sudo(api.tx.appPromotion.setAdminAddress({Substrate: palletAdmin.address}))); + }); + }); + describe('admin adress', () => { itSub('can be set by sudo only', async ({helper}) => { const api = helper.getApi(); -- gitstuff