Skip to content

Commit

Permalink
Update packages/wrangler/src/__tests__/pages.test.ts
Browse files Browse the repository at this point in the history
Co-authored-by: Greg Brimble <[email protected]>
  • Loading branch information
sidharthachatterjee and GregBrimble authored Apr 5, 2022
1 parent 3e7dc34 commit 659fd5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/wrangler/src/__tests__/pages.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ describe("subcommand implicit help ran on incomplete command execution", () => {
expect(init).toEqual({});
const pageSize = Number(query.get("per_page"));
const page = Number(query.get("page"));
return namespaces.slice((page - 1) * pageSize, page * pageSize);
return projects.slice((page - 1) * pageSize, page * pageSize);
}
);
return requests;
Expand Down

0 comments on commit 659fd5a

Please sign in to comment.