From 3f348287aa978cff9c1e68f243d0898c72a1194f Mon Sep 17 00:00:00 2001 From: Dominik Prokop Date: Tue, 3 Dec 2019 10:23:41 +0100 Subject: [PATCH] Fix prettier (#20827) --- .../plugins/panel/graph/specs/graph_ctrl.test.ts | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/public/app/plugins/panel/graph/specs/graph_ctrl.test.ts b/public/app/plugins/panel/graph/specs/graph_ctrl.test.ts index 8eda844b9b4..ec6532fb40c 100644 --- a/public/app/plugins/panel/graph/specs/graph_ctrl.test.ts +++ b/public/app/plugins/panel/graph/specs/graph_ctrl.test.ts @@ -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);