From e3dab71222784500919f7ecaf1852cbb669dd7c6 Mon Sep 17 00:00:00 2001 From: Daniel Shiposha Date: Tue, 08 Nov 2022 15:50:49 +0000 Subject: [PATCH] fix: maintenance mode scheduler test --- --- a/tests/src/maintenanceMode.seqtest.ts +++ b/tests/src/maintenanceMode.seqtest.ts @@ -169,11 +169,13 @@ const nftDuringMM = await collection.mintToken(bob); const nftAfterMM = await collection.mintToken(bob); - const scheduledIdBeforeMM = '0x' + '0'.repeat(31) + '0'; - const scheduledIdDuringMM = '0x' + '0'.repeat(31) + '1'; - const scheduledIdBunkerThroughMM = '0x' + '0'.repeat(31) + '2'; - const scheduledIdAttemptDuringMM = '0x' + '0'.repeat(31) + '3'; - const scheduledIdAfterMM = '0x' + '0'.repeat(31) + '4'; + const [ + scheduledIdBeforeMM, + scheduledIdDuringMM, + scheduledIdBunkerThroughMM, + scheduledIdAttemptDuringMM, + scheduledIdAfterMM, + ] = await helper.arrange.makeScheduledIds(5); const blocksToWait = 6; -- gitstuff