Skip to content

Commit

Permalink
#2313 - changed user creation
Browse files Browse the repository at this point in the history
  • Loading branch information
bracyw committed Jun 9, 2024
1 parent 589e023 commit 85cd413
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/backend/tests/test-utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ export const createTestDesignReview = async () => {
lead,
'03/25/2024',
teamType.teamTypeId,
[6], // this must be the ID of a member with the lead role
[lead.userId], // this must be the ID of a member with the lead role
[],
{
carNumber: 0,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { assert } from 'console';
import { DesignReview, DesignReviewStatus } from 'shared';

describe('Design Reviews', () => {
let designReview: DesignReview; // should be type: Design_Review
let designReview: Design_Review; // should be type: Design_Review
let orgId: string;
beforeEach(async () => {
const result = await createTestDesignReview();
Expand Down

0 comments on commit 85cd413

Please sign in to comment.