Skip to content

Commit 2da89dd

Browse files
committed
#1183 fixed test
1 parent 07c84b0 commit 2da89dd

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/backend/tests/teams.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ describe('Teams', () => {
250250

251251
expect(prisma.team.findUnique).toHaveBeenCalledTimes(1);
252252
expect(prisma.team.delete).toHaveBeenCalledTimes(1);
253-
expect(prisma.team.delete).toHaveBeenCalledWith({ where: { teamId: prismaTeam1.teamId } });
253+
expect(prisma.team.delete).toHaveBeenCalledWith({ where: { teamId: prismaTeam1.teamId }, ...teamQueryArgs });
254254
});
255255
});
256256

0 commit comments

Comments
 (0)