From 38850f348fd6555d3529d4ff38e2eeeb1c47bf0c Mon Sep 17 00:00:00 2001 From: Jari Kolehmainen Date: Thu, 22 Apr 2021 07:50:55 +0300 Subject: [PATCH] fix bad merge Signed-off-by: Jari Kolehmainen --- src/common/__tests__/hotbar-store.test.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/common/__tests__/hotbar-store.test.ts b/src/common/__tests__/hotbar-store.test.ts index 805ad6a711..929c785860 100644 --- a/src/common/__tests__/hotbar-store.test.ts +++ b/src/common/__tests__/hotbar-store.test.ts @@ -26,6 +26,7 @@ describe("HotbarStore", () => { it("adds a hotbar", () => { const hotbarStore = HotbarStore.getInstanceOrCreate(); + hotbarStore.load(); hotbarStore.add({ name: "hottest" }); expect(hotbarStore.hotbars.length).toEqual(2); });