Skip to content

Commit

Permalink
Fix test #2
Browse files Browse the repository at this point in the history
  • Loading branch information
nchaulet committed Jun 23, 2021
1 parent 1bcc619 commit 0108968
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ export default function (providerContext: FtrProviderContext) {
expect(pipelineRes.body).to.have.property(FINAL_PIPELINE_ID);
const res = await es.indices.getIndexTemplate({ name: 'logs-log.log' });
expect(res.body.index_templates.length).to.be(1);
expect(res.body.index_templates[0]?.index_template?.composed_of[0]).to.be(
expect(res.body.index_templates[0]?.index_template?.composed_of).to.contain(
'.fleet_component_template-1'
);
});
Expand Down

0 comments on commit 0108968

Please sign in to comment.