Skip to content

Commit

Permalink
Fix hybrid index pattern test
Browse files Browse the repository at this point in the history
  • Loading branch information
ElenaStoeva committed Jun 13, 2024
1 parent 23a83db commit 0f43f39
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ export default function ({ getService, getPageObjects }) {
// ensure all fields are available
await PageObjects.settings.clickIndexPatternByName(rollupIndexPatternName);
const fields = await PageObjects.settings.getFieldNames();
expect(fields).to.eql(['@timestamp', '_id', '_index', '_score', '_source']);
expect(fields).to.eql(['@timestamp', '_id', '_ignored', '_index', '_score', '_source']);
});

after(async () => {
Expand Down

0 comments on commit 0f43f39

Please sign in to comment.