Skip to content

Commit 59dd3a5

Browse files
authored
[7.x] [Telemetry][API Integration] size_in_bytes to be a number (#74664) (#74741)
1 parent 45e460e commit 59dd3a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/api_integration/apis/telemetry/telemetry_local.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ export default function ({ getService }) {
9090
expect(stats.stack_stats.data[0].index_count).to.be(1);
9191
expect(stats.stack_stats.data[0].doc_count).to.be(0);
9292
expect(stats.stack_stats.data[0].ecs_index_count).to.be(0);
93-
expect(stats.stack_stats.data[0].size_in_bytes).to.be.greaterThan(0);
93+
expect(stats.stack_stats.data[0].size_in_bytes).to.be.a('number');
9494
});
9595

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

0 commit comments

Comments
 (0)