From 379d98a91eb7910e21a37e5e3d42bd1e9aba023f Mon Sep 17 00:00:00 2001 From: Sabe Jones Date: Fri, 28 Jun 2024 11:09:09 -0500 Subject: [PATCH] fix(test): correct schedule test --- test/content/schedule.test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/content/schedule.test.js b/test/content/schedule.test.js index 09d4ebfd6f..139fbe8bf2 100644 --- a/test/content/schedule.test.js +++ b/test/content/schedule.test.js @@ -7,7 +7,7 @@ import { import QUEST_PETS from '../../website/common/script/content/quests/pets'; import QUEST_HATCHINGPOTIONS from '../../website/common/script/content/quests/potions'; import QUEST_BUNDLES from '../../website/common/script/content/bundles'; -import { premium } from '../../website/common/script/content/hatching-potions'; +import potions from '../../website/common/script/content/hatching-potions'; import SPELLS from '../../website/common/script/content/spells'; import QUEST_SEASONAL from '../../website/common/script/content/quests/seasonal'; @@ -167,7 +167,7 @@ describe('Content Schedule', () => { }); it('premium hatching potions', () => { - const potionKeys = Object.keys(premium); + const potionKeys = Object.keys(potions.premium); Object.keys(MONTHLY_SCHEDULE).forEach(key => { const monthlyPotions = MONTHLY_SCHEDULE[key][21].find(item => item.type === 'premiumHatchingPotions'); for (const potion of monthlyPotions.items) {