diff --git a/src/legacy/core_plugins/elasticsearch/index.js b/src/legacy/core_plugins/elasticsearch/index.js index 0c1fb9b832a2..2e7671e0313e 100644 --- a/src/legacy/core_plugins/elasticsearch/index.js +++ b/src/legacy/core_plugins/elasticsearch/index.js @@ -18,7 +18,7 @@ */ import { compact, get, has, set } from 'lodash'; -import { unset } from '../../utils'; +import { unset } from '../../../utils'; import healthCheck from './lib/health_check'; import { createDataCluster } from './lib/create_data_cluster'; diff --git a/src/legacy/core_plugins/elasticsearch/index.test.js b/src/legacy/core_plugins/elasticsearch/index.test.js index 1a3af08d62fd..eebc83158a82 100644 --- a/src/legacy/core_plugins/elasticsearch/index.test.js +++ b/src/legacy/core_plugins/elasticsearch/index.test.js @@ -17,7 +17,7 @@ * under the License. */ -import { Deprecations } from '../../deprecation'; +import { Deprecations } from '../../../deprecation'; import index from './index'; import { compact, noop, set } from 'lodash'; diff --git a/src/legacy/core_plugins/elasticsearch/lib/kibana_version.js b/src/legacy/core_plugins/elasticsearch/lib/kibana_version.js index d3fa178fd70d..80f6e4f90c89 100644 --- a/src/legacy/core_plugins/elasticsearch/lib/kibana_version.js +++ b/src/legacy/core_plugins/elasticsearch/lib/kibana_version.js @@ -19,7 +19,7 @@ import { version as kibanaVersion, -} from '../../../../package.json'; +} from '../../../../../package.json'; export default { // Make the version stubbable to improve testability.