From 4fd2cd13495b39fd319f2042f1370cdbdcfd611b Mon Sep 17 00:00:00 2001 From: Kawika Avilla Date: Wed, 29 Jun 2022 21:32:21 +0000 Subject: [PATCH] [Tests] update expected value for percentile ranks Origin: https://github.com/opensearch-project/OpenSearch/pull/3634 The previous value was actually incorrect after OpenSearch bumped t-digest the value is now the correct value. Issue: https://github.com/opensearch-project/OpenSearch-Dashboards/issues/1821 Signed-off-by: Kawika Avilla --- test/functional/apps/visualize/_metric_chart.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/functional/apps/visualize/_metric_chart.js b/test/functional/apps/visualize/_metric_chart.js index d70454753347..1d3029565d3c 100644 --- a/test/functional/apps/visualize/_metric_chart.js +++ b/test/functional/apps/visualize/_metric_chart.js @@ -175,7 +175,7 @@ export default function ({ getService, getPageObjects }) { }); it('should show Percentile Ranks', async function () { - const percentileRankBytes = ['2.036%', 'Percentile rank 99 of "memory"']; + const percentileRankBytes = ['2.029%', 'Percentile rank 99 of "memory"']; log.debug('Aggregation = Percentile Ranks'); await PageObjects.visEditor.selectAggregation('Percentile Ranks', 'metrics'); log.debug('Field = bytes');