Fix prettier (#20827)

This commit is contained in:
Dominik Prokop 2019-12-03 10:23:41 +01:00 committed by Torkel Ödegaard
parent 45259f4362
commit 3f348287aa

View File

@ -118,15 +118,24 @@ describe('GraphCtrl', () => {
const data = [
{
target: 'test.normal',
datapoints: [[10, 1], [10, 2]],
datapoints: [
[10, 1],
[10, 2],
],
},
{
target: 'test.nulls',
datapoints: [[null, 1], [null, 2]],
datapoints: [
[null, 1],
[null, 2],
],
},
{
target: 'test.zeros',
datapoints: [[0, 1], [0, 2]],
datapoints: [
[0, 1],
[0, 2],
],
},
];
ctx.ctrl.onDataSnapshotLoad(data);