Skip to content
This repository has been archived by the owner on Mar 31, 2024. It is now read-only.

Commit

Permalink
[Discover] Fix fields flaky test (elastic#140872)
Browse files Browse the repository at this point in the history
Co-authored-by: Joe Reuter <[email protected]>
  • Loading branch information
jughosta and flash1293 authored Sep 19, 2022
1 parent fabdee3 commit d05b534
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -411,7 +411,7 @@ export default ({ getService }: FtrProviderContext) => {
expect(body.totalDocuments).to.eql(4634);
expect(body.sampledDocuments).to.eql(100);
expect(body.sampledValues).to.eql(100);
expect(body.topValues.buckets.length).to.eql(5);
expect(body.topValues.buckets.length).to.be.greaterThan(0);
});

it('should return top values for index pattern runtime string fields', async () => {
Expand Down

0 comments on commit d05b534

Please sign in to comment.