From 36f35f9fa28eb3c0b2fadf5403199d6c7e96aab7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Loix?= Date: Thu, 27 Dec 2018 12:58:07 +0100 Subject: [PATCH] [CCR] Put back integration test for remote cluster (#27778) (#27801) --- .../apis/management/remote_clusters/remote_clusters.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/x-pack/test/api_integration/apis/management/remote_clusters/remote_clusters.js b/x-pack/test/api_integration/apis/management/remote_clusters/remote_clusters.js index a27f4a6491703..db59adba96690 100644 --- a/x-pack/test/api_integration/apis/management/remote_clusters/remote_clusters.js +++ b/x-pack/test/api_integration/apis/management/remote_clusters/remote_clusters.js @@ -109,7 +109,7 @@ export default function ({ getService }) { }); describe('List', () => { - it.skip('should return an array of remote clusters', async () => { + it('should return an array of remote clusters', async () => { const uri = `${API_BASE_PATH}`; const { body } = await supertest @@ -120,7 +120,7 @@ export default function ({ getService }) { { name: 'test_cluster', seeds: [ - '127.0.0.1:9300' + 'localhost:9300' ], isConnected: true, connectedNodesCount: 1,