Skip to content

Commit

Permalink
eslint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
nreese committed Dec 26, 2019
1 parent 1072d23 commit 2770545
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion x-pack/test/api_integration/apis/maps/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ export default function({ loadTestFile, getService }) {
});

describe('', () => {
const esArchiver = getService('esArchiver');
loadTestFile(require.resolve('./index_settings'));
loadTestFile(require.resolve('./migrations'));
});
Expand Down
6 changes: 3 additions & 3 deletions x-pack/test/api_integration/apis/maps/index_settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ export default function({ getService }) {
describe('index settings', () => {
it('should return index settings', async () => {
const resp = await supertest
.get(`/api/maps/indexSettings?indexPatternTitle=logstash*`)
.set('kbn-xsrf', 'kibana')
.expect(200);
.get(`/api/maps/indexSettings?indexPatternTitle=logstash*`)
.set('kbn-xsrf', 'kibana')
.expect(200);

expect(resp.body.maxResultWindow).to.be(10000);
expect(resp.body.maxInnerResultWindow).to.be(100);
Expand Down

0 comments on commit 2770545

Please sign in to comment.