Skip to content

Commit

Permalink
Fix params test
Browse files Browse the repository at this point in the history
  • Loading branch information
solomonhawk committed Nov 14, 2024
1 parent d3ae725 commit d09292f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/lib/src/models/pagination/params.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ describe("PaginationParamsModel", () => {
const subject = new PaginationParamsModel(2, 100);

expect(subject.toQuery()).toStrictEqual({
skip: 100,
take: 100,
offset: 100,
limit: 100,
});
});

Expand Down

0 comments on commit d09292f

Please sign in to comment.