From 989a1a3d5d5144e535040ac8c276a34e49b9eae8 Mon Sep 17 00:00:00 2001 From: Marcus Andersson Date: Tue, 16 Jun 2020 08:02:55 +0200 Subject: [PATCH] fixed failing test. (#25619) --- public/app/plugins/panel/graph/specs/graph_ctrl.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 df6e7f9a939..d1f428579c8 100644 --- a/public/app/plugins/panel/graph/specs/graph_ctrl.test.ts +++ b/public/app/plugins/panel/graph/specs/graph_ctrl.test.ts @@ -91,7 +91,7 @@ describe('GraphCtrl', () => { }); it('should set datapointsOutside', () => { - expect(ctx.ctrl.dataWarning).toBe(null); + expect(ctx.ctrl.dataWarning).toBeUndefined(); }); });