Skip to content

Commit 2770545

Browse files
committed
eslint fixes
1 parent 1072d23 commit 2770545

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

x-pack/test/api_integration/apis/maps/index.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ export default function({ loadTestFile, getService }) {
1313
});
1414

1515
describe('', () => {
16-
const esArchiver = getService('esArchiver');
1716
loadTestFile(require.resolve('./index_settings'));
1817
loadTestFile(require.resolve('./migrations'));
1918
});

x-pack/test/api_integration/apis/maps/index_settings.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ export default function({ getService }) {
1212
describe('index settings', () => {
1313
it('should return index settings', async () => {
1414
const resp = await supertest
15-
.get(`/api/maps/indexSettings?indexPatternTitle=logstash*`)
16-
.set('kbn-xsrf', 'kibana')
17-
.expect(200);
15+
.get(`/api/maps/indexSettings?indexPatternTitle=logstash*`)
16+
.set('kbn-xsrf', 'kibana')
17+
.expect(200);
1818

1919
expect(resp.body.maxResultWindow).to.be(10000);
2020
expect(resp.body.maxInnerResultWindow).to.be(100);

0 commit comments

Comments
 (0)