From 76606ae33a35bb47bf0d2909281ff0197a3d67d4 Mon Sep 17 00:00:00 2001 From: NightKev <34855794+DayKev@users.noreply.github.com> Date: Sat, 2 Aug 2025 15:07:54 -0700 Subject: [PATCH] Fix merge issue --- test/test-utils/string-utils.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/test/test-utils/string-utils.ts b/test/test-utils/string-utils.ts index ee92f146c4c..bd3dd7c2fa9 100644 --- a/test/test-utils/string-utils.ts +++ b/test/test-utils/string-utils.ts @@ -1,5 +1,6 @@ import { getStatKey, type Stat } from "#enums/stat"; -import type { EnumOrObject, EnumValues, NormalEnum, TSNumericEnum } from "#types/enum-types"; +import type { EnumOrObject, NormalEnum, TSNumericEnum } from "#types/enum-types"; +import type { ObjectValues } from "#types/type-helpers"; import { enumValueToKey } from "#utils/enums"; import { toTitleCase } from "#utils/strings"; import type { MatcherState } from "@vitest/expect"; @@ -44,7 +45,7 @@ interface getEnumStrOptions { */ export function getEnumStr( obj: E, - val: EnumValues, + val: ObjectValues, { casing = "Preserve", prefix = "", suffix = "" }: getEnumStrOptions = {}, ): string { let casingFunc: ((s: string) => string) | undefined;