From b0effffb8408ff97e0bd78cfa7e81b8295866836 Mon Sep 17 00:00:00 2001 From: Hood Chatham Date: Sun, 22 Dec 2024 17:31:11 +0100 Subject: [PATCH] Force a test failure --- tests/test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test.ts b/tests/test.ts index cb8d7f38..9fb0831f 100644 --- a/tests/test.ts +++ b/tests/test.ts @@ -33,11 +33,11 @@ suite("types.ts", async () => { function getObject(name: string): TopLevelIR { const obj = map.get(name); assert(obj); - return obj; + return obj!; } suite("basic", async () => { for (const [obj_name, type_name] of [ - ["bool", "boolean"], + ["bool", "boolean1"], ["num", "number"], ["str", "string"], ["array", "number[]"],