Skip to content

Commit

Permalink
add back size parameter to transform.api.getTransformList as it's use…
Browse files Browse the repository at this point in the history
…d by a security test
  • Loading branch information
pheyos committed Mar 16, 2022
1 parent a7714f4 commit f3abad2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion x-pack/test/functional/services/transform/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ export function TransformAPIProvider({ getService }: FtrProviderContext) {
});
},

async getTransformList(): Promise<GetTransformsResponseSchema> {
async getTransformList(size: number = 10): Promise<GetTransformsResponseSchema> {
const { body, status } = await esSupertest.get(`/_transform`);
this.assertResponseStatusCode(200, status, body);

Expand Down

0 comments on commit f3abad2

Please sign in to comment.