Skip to content

Commit dfd336a

Browse files
fix TS
1 parent c75a75e commit dfd336a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

x-pack/test/api_integration/apis/management/ingest_pipelines/ingest_pipelines.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ export default function({ getService }: FtrProviderContext) {
160160

161161
// There are some pipelines created OOTB with ES
162162
// To not be dependent on these, we only confirm the pipeline we created as part of the test exists
163-
const testPipeline = body.find(({ name }) => name === PIPELINE_ID);
163+
const testPipeline = body.find(({ name }: { name: string }) => name === PIPELINE_ID);
164164

165165
expect(testPipeline).to.eql({
166166
...PIPELINE,

0 commit comments

Comments
 (0)