Skip to content

Commit 3925e83

Browse files
author
Megan Liu
committed
#1604: fixed failing TypeScript checks (again)
1 parent a119f2e commit 3925e83

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/backend/tests/test-data/teams.test-data.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export const prismaTeam1: Prisma.TeamGetPayload<typeof teamQueryArgs> = {
1919
members: [aquaman],
2020
leads: [wonderwoman, alfred],
2121
dateArchived: new Date('12/15/1985'),
22-
userId: 3
22+
userArchivedId: 3
2323
};
2424

2525
export const primsaTeam2: Prisma.TeamGetPayload<typeof teamQueryArgs> = {
@@ -33,7 +33,7 @@ export const primsaTeam2: Prisma.TeamGetPayload<typeof teamQueryArgs> = {
3333
members: [],
3434
leads: [],
3535
dateArchived: new Date('12/02/2002'),
36-
userId: null
36+
userArchivedId: null
3737
};
3838

3939
export const sharedTeam1: SharedTeam = {
@@ -58,5 +58,5 @@ export const justiceLeague: Prisma.TeamGetPayload<typeof teamQueryArgs> = {
5858
members: [aquaman, theVisitor],
5959
leads: [wonderwoman],
6060
dateArchived: null,
61-
userId: null
61+
userArchivedId: null
6262
};

0 commit comments

Comments
 (0)