Skip to content

Commit f551091

Browse files
authored
fix test
1 parent 5203864 commit f551091

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/gguf/src/gguf.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -294,8 +294,8 @@ describe("gguf", () => {
294294

295295
// Quantization handler
296296

297-
it("should have GGUF_QUANT_ORDER in sync with GGMLQuantizationType enum", () => {
298-
const enumValues = Object.values(GGMLQuantizationType).filter((value) => typeof value === "number") as number[];
297+
it("should have GGUF_QUANT_ORDER in sync with GGMLFileQuantizationType enum", () => {
298+
const enumValues = Object.values(GGMLFileQuantizationType).filter((value) => typeof value === "number") as number[];
299299
const checkValues = new Set(GGUF_QUANT_ORDER);
300300
for (const value of enumValues) {
301301
expect(checkValues).toContain(value);

0 commit comments

Comments
 (0)