difftreelog
fix scheduler tests after rebase
in: master
2 files changed
tests/src/scheduler.test.tsdiffbeforeafterboth14// You should have received a copy of the GNU General Public License14// You should have received a copy of the GNU General Public License15// along with Unique Network. If not, see <http://www.gnu.org/licenses/>.15// along with Unique Network. If not, see <http://www.gnu.org/licenses/>.161617import {expect, itSub, Pallets, usingPlaygrounds} from './util/playgrounds';17import {expect, itSub, Pallets, usingPlaygrounds} from './util';18import {IKeyringPair} from '@polkadot/types/types';18import {IKeyringPair} from '@polkadot/types/types';19import {DevUniqueHelper} from './util/playgrounds/unique.dev';19import {DevUniqueHelper} from './util/playgrounds/unique.dev';2020252526 before(async () => {26 before(async () => {27 await usingPlaygrounds(async (helper, privateKeyWrapper) => {27 await usingPlaygrounds(async (helper, privateKeyWrapper) => {28 alice = privateKeyWrapper('//Alice');28 alice = await privateKeyWrapper('//Alice');29 bob = privateKeyWrapper('//Bob');29 bob = await privateKeyWrapper('//Bob');30 charlie = privateKeyWrapper('//Charlie');30 charlie = await privateKeyWrapper('//Charlie');313132 await helper.testUtils.enable();32 await helper.testUtils.enable();33 });33 });417417418 before(async () => {418 before(async () => {419 await usingPlaygrounds(async (helper, privateKeyWrapper) => {419 await usingPlaygrounds(async (helper, privateKeyWrapper) => {420 alice = privateKeyWrapper('//Alice');420 alice = await privateKeyWrapper('//Alice');421 bob = privateKeyWrapper('//Bob');421 bob = await privateKeyWrapper('//Bob');422422423 await helper.testUtils.enable();423 await helper.testUtils.enable();424 });424 });tests/src/util/playgrounds/unique.dev.tsdiffbeforeafterboth--- a/tests/src/util/playgrounds/unique.dev.ts
+++ b/tests/src/util/playgrounds/unique.dev.ts
@@ -11,7 +11,7 @@
import {ICrossAccountId, TSigner} from './types';
import {FrameSystemEventRecord} from '@polkadot/types/lookup';
import {VoidFn} from '@polkadot/api/types';
-import {Pallets} from '.';
+import {Pallets} from '..';
export class SilentLogger {
log(_msg: any, _level: any): void { }