Skip to content
This repository has been archived by the owner on Sep 16, 2024. It is now read-only.

Commit

Permalink
chore(tests): fix test description
Browse files Browse the repository at this point in the history
  • Loading branch information
dtfiedler committed Jan 5, 2024
1 parent b34c4fd commit 83171c5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ components:
name: pageSize
in: query
required: false
default: 100.
default: 100
description: The number of results per page. Minimum of 1, maximum of 1000.
schema:
type: number
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/routes.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -653,7 +653,7 @@ describe('Integration tests', () => {
});

describe('/:address/contracts/:contractTxId', () => {
it('should return the all the wallets contract interactions when page is not provided', async () => {
it('should return the the first page wallets contract interactions by default, with default page size of 100', async () => {
const { status, data } = await axios.get(
`/v1/wallet/${walletAddress}/contract/${id}`,
);
Expand Down

0 comments on commit 83171c5

Please sign in to comment.