Skip to content

Commit

Permalink
Fix tests in _handle_version_conflict
Browse files Browse the repository at this point in the history
Removes type from `es.update`
  • Loading branch information
TinaHeiligers authored Jan 15, 2022
1 parent b756a53 commit 6451c74
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions test/functional/apps/management/_handle_version_conflict.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ export default function ({ getService, getPageObjects }) {
await PageObjects.settings.setScriptedFieldScript(`doc['bytes'].value`);
const response = await es.update({
index: '.kibana',
type: '_doc',
id: 'index-pattern:logstash-*',
body: {
doc: { 'index-pattern': { fieldFormatMap: '{"geo.src":{"id":"number"}}' } },
Expand Down Expand Up @@ -79,7 +78,6 @@ export default function ({ getService, getPageObjects }) {
await PageObjects.settings.setFieldFormat('url');
const response = await es.update({
index: '.kibana',
type: '_doc',
id: 'index-pattern:logstash-*',
body: {
doc: { 'index-pattern': { fieldFormatMap: '{"geo.dest":{"id":"number"}}' } },
Expand Down

0 comments on commit 6451c74

Please sign in to comment.