From c86685c62008e6ff1760fea7e2e3305e84c8b48b Mon Sep 17 00:00:00 2001 From: Trubnikov Sergey Date: Tue, 13 Dec 2022 09:18:20 +0000 Subject: [PATCH] fix: PR --- --- a/tests/src/eth/events.test.ts +++ b/tests/src/eth/events.test.ts @@ -68,7 +68,7 @@ unsubscribe(); } -async function testCollectionPropertySetAndCollectionPropertyDeleted(helper: EthUniqueHelper, mode: TCollectionMode) { +async function testCollectionPropertySetAndDeleted(helper: EthUniqueHelper, mode: TCollectionMode) { const owner = await helper.eth.createAccountWithBalance(donor); const {collectionAddress} = await helper.eth.createCollection(mode, owner, 'A', 'B', 'C'); const collection = await helper.ethNativeContract.collection(collectionAddress, mode, owner); @@ -420,7 +420,7 @@ }); itEth('CollectionChanged event for CollectionPropertySet and CollectionPropertyDeleted', async ({helper}) => { - await testCollectionPropertySetAndCollectionPropertyDeleted(helper, mode); + await testCollectionPropertySetAndDeleted(helper, mode); }); itEth('CollectionChanged event for AllowListAddressAdded, AllowListAddressRemoved', async ({helper}) => { @@ -456,7 +456,7 @@ }); itEth('CollectionChanged event for CollectionPropertySet and CollectionPropertyDeleted', async ({helper}) => { - await testCollectionPropertySetAndCollectionPropertyDeleted(helper, mode); + await testCollectionPropertySetAndDeleted(helper, mode); }); itEth('CollectionChanged event for PropertyPermissionSet', async ({helper}) => { @@ -507,7 +507,7 @@ }); itEth('CollectionChanged event for CollectionPropertySet and CollectionPropertyDeleted', async ({helper}) => { - await testCollectionPropertySetAndCollectionPropertyDeleted(helper, mode); + await testCollectionPropertySetAndDeleted(helper, mode); }); itEth('CollectionChanged event for PropertyPermissionSet', async ({helper}) => { -- gitstuff