From 30b6c3b54a4e7315982df9f2294eb1b596447056 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torkel=20=C3=96degaard?= Date: Thu, 11 May 2017 08:52:22 +0200 Subject: [PATCH] build: fixed heatmap test --- .../heatmap/specs/heatmap_data_converter_specs.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/public/app/plugins/panel/heatmap/specs/heatmap_data_converter_specs.ts b/public/app/plugins/panel/heatmap/specs/heatmap_data_converter_specs.ts index 7c8dce2b822..03adf1f9fa3 100644 --- a/public/app/plugins/panel/heatmap/specs/heatmap_data_converter_specs.ts +++ b/public/app/plugins/panel/heatmap/specs/heatmap_data_converter_specs.ts @@ -223,17 +223,17 @@ describe('ES Histogram converter', () => { '1422774000000': { x: 1422774000000, buckets: { - '1': { y: 1, count: 1 }, - '2': { y: 2, count: 5 }, - '3': { y: 3, count: 0 } + '1': { y: 1, count: 1, values: [], points: [] }, + '2': { y: 2, count: 5, values: [], points: [] }, + '3': { y: 3, count: 0, values: [], points: [] } } }, '1422774060000': { x: 1422774060000, buckets: { - '1': { y: 1, count: 0 }, - '2': { y: 2, count: 3 }, - '3': { y: 3, count: 1 } + '1': { y: 1, count: 0, values: [], points: [] }, + '2': { y: 2, count: 3, values: [], points: [] }, + '3': { y: 3, count: 1, values: [], points: [] } } }, };