[Index Management] Fix cluster_nodes API test (#124224)

This commit is contained in:
Alison Goryachev 2022-02-01 09:34:16 -05:00 committed by GitHub
parent d4b757efd0
commit 150a813e2c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -19,7 +19,7 @@ export default function ({ getService }: FtrProviderContext) {
it('should fetch the nodes plugins', async () => {
const { body } = await getNodesPlugins().expect(200);
expect(body).eql([]);
expect(Array.isArray(body)).to.be(true);
});
});
}