Skip to content

Commit

Permalink
#2770-forgot to await
Browse files Browse the repository at this point in the history
  • Loading branch information
caiodasilva2005 committed Sep 20, 2024
1 parent d7fafc7 commit 259cdaf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/backend/tests/test-utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -424,7 +424,7 @@ export const createTestTask = async (user: User, organization?: Organization) =>
if (!team) throw new Error('Failed to create team');
const project = await createTestProject(user, organization.organizationId);
if (!project) throw new Error('Failed to create project');
const projectWithTeam = ProjectsService.setProjectTeam(
const projectWithTeam = await ProjectsService.setProjectTeam(
user,
{
carNumber: 0,
Expand Down

0 comments on commit 259cdaf

Please sign in to comment.