Skip to content

Commit

Permalink
fix: type check
Browse files Browse the repository at this point in the history
  • Loading branch information
thomhickey committed Nov 1, 2024
1 parent df71b5b commit 99fa308
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/backend/routers/iep.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ test("basic flow - add/get goals, subgoals, tasks", async (t) => {

test("addTask - no duplicate subgoal_id + assigned_id combo", async (t) => {
const { trpc, seed } = await getTestServer(t, {
authenticateAs: "case_manager",
authenticateAs: UserType.CaseManager,
});

const para_id = seed.para.user_id;
Expand Down Expand Up @@ -162,7 +162,7 @@ test("addTask - no duplicate subgoal_id + assigned_id combo", async (t) => {

test("assignTaskToParas - no duplicate subgoal_id + para_id combo", async (t) => {
const { trpc, seed } = await getTestServer(t, {
authenticateAs: "case_manager",
authenticateAs: UserType.CaseManager,
});

const para_1 = seed.para;
Expand Down

0 comments on commit 99fa308

Please sign in to comment.