diff --git a/test/fixtures/scenarios/logstashFunctional/makelogsIndexDefinition.js b/test/fixtures/scenarios/logstashFunctional/makelogsIndexDefinition.js index ef0b1332f601..f0febe0a7fff 100644 --- a/test/fixtures/scenarios/logstashFunctional/makelogsIndexDefinition.js +++ b/test/fixtures/scenarios/logstashFunctional/makelogsIndexDefinition.js @@ -19,14 +19,11 @@ module.exports = { 'dynamic_templates': [{ 'string_fields': { 'mapping': { - 'type': 'multi_field', + 'type': 'string', + 'index': 'analyzed', + 'omit_norms': true, 'doc_values': true, 'fields': { - '{name}': { - 'index': 'analyzed', - 'omit_norms': true, - 'type': 'string' - }, 'raw': { 'index': 'not_analyzed', 'type': 'string', diff --git a/test/fixtures/scenarios/makelogs/makelogsIndexDefinition.js b/test/fixtures/scenarios/makelogs/makelogsIndexDefinition.js index ef0b1332f601..de7b2c2fe8a7 100644 --- a/test/fixtures/scenarios/makelogs/makelogsIndexDefinition.js +++ b/test/fixtures/scenarios/makelogs/makelogsIndexDefinition.js @@ -19,14 +19,11 @@ module.exports = { 'dynamic_templates': [{ 'string_fields': { 'mapping': { - 'type': 'multi_field', + 'type': 'string' + 'index': 'analyzed', 'doc_values': true, + 'omit_norms': true, 'fields': { - '{name}': { - 'index': 'analyzed', - 'omit_norms': true, - 'type': 'string' - }, 'raw': { 'index': 'not_analyzed', 'type': 'string',