From a5236ef0339d6af4208940f2008957668fbc75e6 Mon Sep 17 00:00:00 2001 From: Jared He <66887902+jaredjhe@users.noreply.github.com> Date: Tue, 30 Nov 2021 17:35:32 -0600 Subject: [PATCH] Test CI for type errors --- lib/events.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/events.ts b/lib/events.ts index 06952eb3..ff46894d 100644 --- a/lib/events.ts +++ b/lib/events.ts @@ -246,7 +246,7 @@ export function getCurrentTerm(): { year: string; term: Term } { throw new Error("Error setting the current term"); } - return { year, term }; + return { year, "Test" }; } function getPastTerm(year: string, term: Term): { year: string; term: Term } {