Skip to content

Commit

Permalink
test fix
Browse files Browse the repository at this point in the history
  • Loading branch information
thetif committed Jan 8, 2025
1 parent 5a1f004 commit 5222e57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/lambda/search.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ describe("getSearchData Handler", () => {
const body = JSON.parse(res.body);
expect(body).toBeTruthy();
expect(body?.hits?.hits).toBeTruthy();
expect(body?.hits?.hits?.length).toEqual(12);
expect(body?.hits?.hits?.length).toEqual(13);
});

it("should handle errors during processing", async () => {
Expand Down

0 comments on commit 5222e57

Please sign in to comment.