Commit 30b6c3b5 by Torkel Ödegaard

build: fixed heatmap test

parent b2c14b85
......@@ -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: [] }
}
},
};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment