Skip to content

Commit

Permalink
revert test fix
Browse files Browse the repository at this point in the history
  • Loading branch information
YulNaumenko committed May 2, 2024
1 parent 1c34370 commit bc56a95
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ const findTestUtils = (
expect(response.statusCode).to.eql(200);
expect(response.body.page).to.equal(1);
expect(response.body.per_page).to.be.equal(perPage);
expect(response.body.total).to.be.equal(9);
expect(response.body.total).to.be.equal(8);

{
const [firstPage, secondPage] = chunk(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ const findTestUtils = (
expect(response.statusCode).to.eql(200);
expect(response.body.page).to.equal(1);
expect(response.body.per_page).to.be.equal(perPage);
expect(response.body.total).to.be.equal(9);
expect(response.body.total).to.be.equal(8);

{
const [firstPage, secondPage] = chunk(
Expand Down

0 comments on commit bc56a95

Please sign in to comment.