From 75fb1f8be627691b7fc04c3d155ab25b01ed34aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torkel=20=C3=96degaard?= Date: Thu, 25 Nov 2021 10:07:25 +0100 Subject: [PATCH] Candlestick: Fixes typescript issue in tests (#42274) --- public/app/plugins/panel/candlestick/fields.test.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/public/app/plugins/panel/candlestick/fields.test.ts b/public/app/plugins/panel/candlestick/fields.test.ts index 82e552b3e6c..01e8abd6e7b 100644 --- a/public/app/plugins/panel/candlestick/fields.test.ts +++ b/public/app/plugins/panel/candlestick/fields.test.ts @@ -163,7 +163,7 @@ describe('Candlestick data', () => { ], options, theme - ); + )!; expect(info.open).toBeDefined(); expect(info.close).toBeDefined(); @@ -225,7 +225,7 @@ describe('Candlestick data', () => { ], options, theme - ); + )!; expect(info.open).toBeDefined(); expect(info.close).toBeDefined(); @@ -279,7 +279,7 @@ describe('Candlestick data', () => { ], options, theme - ); + )!; expect(info.open).toBeDefined(); expect(info.close).toBeDefined();