Skip to content

Commit

Permalink
fixed linter issue
Browse files Browse the repository at this point in the history
  • Loading branch information
npunati27 committed Oct 30, 2023
1 parent dd4fa56 commit b32bcf2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/admission/admission-router.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ describe("PUT /admission", () => {
const retrievedEntries = await Promise.all(ops);
expect(retrievedEntries).toMatchObject(
expect.arrayContaining(
updateData.map((item) => expect.objectContaining({ status: item.status, userId: item.userId })),
updateData.map((item) => {return expect.objectContaining({ status: item.status, userId: item.userId })}),
),
);
});
Expand Down

0 comments on commit b32bcf2

Please sign in to comment.