From 2f7f8a3f62f6e5e36f992a94b8e3586341c813d4 Mon Sep 17 00:00:00 2001 From: Dev Date: Sat, 4 Nov 2023 09:53:30 +0000 Subject: [PATCH] use correct base type id for test --- project/tests/helpers/ItemHelper.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/tests/helpers/ItemHelper.test.ts b/project/tests/helpers/ItemHelper.test.ts index e886e7ae..e928d538 100644 --- a/project/tests/helpers/ItemHelper.test.ts +++ b/project/tests/helpers/ItemHelper.test.ts @@ -37,7 +37,7 @@ describe("ItemHelper", () => it("should return false when item is of an invalid base type", () => { - const result = itemHelper.isValidItem("5fc64ea372b0dd78d51159dc", ["invalid-base-type"]); // "Cultist knife" + const result = itemHelper.isValidItem("5fc64ea372b0dd78d51159dc", ["5447e1d04bdc2dff2f8b4567"]); // "Cultist knife" expect(result).toBe(false); });