Skip to content

Commit

Permalink
fix: 2
Browse files Browse the repository at this point in the history
  • Loading branch information
whiitex committed May 19, 2024
1 parent 520a1f4 commit 3a8c0d2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions api/src/timeslots/timeslots.e2e-spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1195,7 +1195,7 @@ describe('TimeslotsController', () => {
promises.push(recruitmentSessionService.createRecruitmentSession(rs)),
);

Promise.all(promises).then(() => {
await Promise.all(promises).then(() => {
promises = [];
mockUsers.forEach(async (u) => promises.push(usersService.create(u)));

Expand Down Expand Up @@ -1231,7 +1231,7 @@ describe('TimeslotsController', () => {
},
];
return await request(app.getHttpServer())
.get('/timeslots')
.get('/v1/timeslots')
.set('Authorization', `Bearer ${newMemberToken}`)
.expect(200)
.expect((res) => {
Expand Down

0 comments on commit 3a8c0d2

Please sign in to comment.