diff --git a/x-pack/test/reporting_api_integration/reporting_and_security/generate_csv_discover.ts b/x-pack/test/reporting_api_integration/reporting_and_security/generate_csv_discover.ts index 43297f23f302a1..ac4c459880caae 100644 --- a/x-pack/test/reporting_api_integration/reporting_and_security/generate_csv_discover.ts +++ b/x-pack/test/reporting_api_integration/reporting_and_security/generate_csv_discover.ts @@ -208,7 +208,7 @@ export default function ({ getService }: FtrProviderContext) { it('includes all unmapped fields to the report', async () => { const csvFile = await generateCsvReportWithUnmapped(['*']); - expect((csvFile as string).length).to.be(120); + expect((csvFile as string).length).to.be(139); expectSnapshot(createPartialCsv(csvFile)).toMatch(); }); }); diff --git a/x-pack/test_serverless/api_integration/test_suites/common/reporting/generate_csv_discover.ts b/x-pack/test_serverless/api_integration/test_suites/common/reporting/generate_csv_discover.ts index 8bf26514251e4d..8e6962ef031c0a 100644 --- a/x-pack/test_serverless/api_integration/test_suites/common/reporting/generate_csv_discover.ts +++ b/x-pack/test_serverless/api_integration/test_suites/common/reporting/generate_csv_discover.ts @@ -212,7 +212,7 @@ export default function ({ getService }: FtrProviderContext) { it('includes all unmapped fields to the report', async () => { const csvFile = await generateCsvReportWithUnmapped(['*']); - expect((csvFile as string).length).to.be(124); + expect((csvFile as string).length).to.be(143); expectSnapshot(createPartialCsv(csvFile)).toMatch(); }); });