From fc6fcf2f3d0b0f5fb77e3adcb84e9f38d6039914 Mon Sep 17 00:00:00 2001 From: Max Andreev Date: Mon, 05 Dec 2022 10:34:54 +0000 Subject: [PATCH] Fix tests for quartz and unique --- --- a/tests/src/eth/collectionAdmin.test.ts +++ b/tests/src/eth/collectionAdmin.test.ts @@ -425,7 +425,7 @@ await collectionEvm.methods.changeCollectionOwnerCross(ownerCrossSub).send({from: ownerEth}); expect(await collectionEvm.methods.isOwnerOrAdminCross(ownerCrossSub).call()).to.be.true; expect(await helper.collection.getData(collectionId)) - .to.have.property('normalizedOwner').that.is.eq(ownerSub.address); + .to.have.property('normalizedOwner').that.is.eq(helper.address.normalizeSubstrate(ownerSub.address)); }); itEth.skip('change owner call fee', async ({helper}) => { -- gitstuff