From 3b05a74d6847957d7016b4acaee44d55c5ba0948 Mon Sep 17 00:00:00 2001 From: Daniel Shiposha Date: Wed, 26 Oct 2022 07:06:27 +0000 Subject: [PATCH] fix: scheduling evm test --- --- a/tests/src/eth/scheduling.test.ts +++ b/tests/src/eth/scheduling.test.ts @@ -15,8 +15,8 @@ // along with Unique Network. If not, see . import {expect} from 'chai'; -import {EthUniqueHelper, itEth} from './util/playgrounds'; -import {Pallets, usingPlaygrounds} from '../util/playgrounds'; +import {EthUniqueHelper, itEth} from './util'; +import {Pallets, usingPlaygrounds} from '../util'; describe('Scheduing EVM smart contracts', () => { @@ -27,7 +27,7 @@ }); itEth.ifWithPallets('Successfully schedules and periodically executes an EVM contract', [Pallets.Scheduler], async ({helper, privateKey}) => { - const alice = privateKey('//Alice'); + const alice = await privateKey('//Alice'); const scheduledId = await helper.arrange.makeScheduledId(); -- gitstuff