Skip to content

Commit

Permalink
Fix linter issue
Browse files Browse the repository at this point in the history
  • Loading branch information
sabarasaba committed Nov 24, 2023
1 parent 8572886 commit 887cc74
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ export function mappingsApi(getService: FtrProviderContext['getService']) {
const supertest = getService('supertest');

const getMapping = (index: string) =>
supertest.get(`${API_BASE_PATH}/mapping/${index}`)
supertest
.get(`${API_BASE_PATH}/mapping/${index}`)
.set('kbn-xsrf', 'xxx')
.set('x-elastic-internal-origin', 'xxx');

Expand Down

0 comments on commit 887cc74

Please sign in to comment.