Skip to content

Commit

Permalink
Fixed linting errors in test file where we are skipping a test for ki…
Browse files Browse the repository at this point in the history
…bana
  • Loading branch information
jasonrhodes committed Oct 26, 2018
1 parent 36114c6 commit 5d9c062
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
* or more contributor license agreements. Licensed under the Elastic License;
* you may not use this file except in compliance with the Elastic License.
*/
/* eslint-disable no-loop-func */

import expect from 'expect.js';
import { get } from 'lodash';
Expand All @@ -12,7 +13,7 @@ import * as logstashMetrics from '../../../../../plugins/monitoring/server/lib/m
import * as beatsMetrics from '../../../../../plugins/monitoring/server/lib/metrics/beats/metrics';
import * as apmMetrics from '../../../../../plugins/monitoring/server/lib/metrics/apm/metrics';

export default function({ getService }) {
export default ({ getService }) => {
const es = getService('es');

const metricSets = [
Expand Down Expand Up @@ -75,4 +76,4 @@ export default function({ getService }) {
});
}
});
}
};

0 comments on commit 5d9c062

Please sign in to comment.