Skip to content

Commit

Permalink
[7.x] [Telemetry][API Integration] size_in_bytes to be a number (#74664
Browse files Browse the repository at this point in the history
…) (#74741)
  • Loading branch information
afharo authored Aug 11, 2020
1 parent 45e460e commit 59dd3a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/api_integration/apis/telemetry/telemetry_local.js
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ export default function ({ getService }) {
expect(stats.stack_stats.data[0].index_count).to.be(1);
expect(stats.stack_stats.data[0].doc_count).to.be(0);
expect(stats.stack_stats.data[0].ecs_index_count).to.be(0);
expect(stats.stack_stats.data[0].size_in_bytes).to.be.greaterThan(0);
expect(stats.stack_stats.data[0].size_in_bytes).to.be.a('number');
});

it('should pull local stats and validate fields', async () => {
Expand Down

0 comments on commit 59dd3a5

Please sign in to comment.