From d5600b5854422709768405423c1ec8af9ca2c1d9 Mon Sep 17 00:00:00 2001 From: "Grot (@grafanabot)" <43478413+grafanabot@users.noreply.github.com> Date: Thu, 25 Nov 2021 04:47:44 -0500 Subject: [PATCH] Candlestick: Fixes typescript issue in tests (#42274) (#42275) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit (cherry picked from commit 75fb1f8be627691b7fc04c3d155ab25b01ed34aa) Co-authored-by: Torkel Ödegaard --- 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 d5702bff7ef..a92b8ecaad4 100644 --- a/public/app/plugins/panel/candlestick/fields.test.ts +++ b/public/app/plugins/panel/candlestick/fields.test.ts @@ -162,7 +162,7 @@ describe('Candlestick data', () => { ], options, theme - ); + )!; expect(info.open).toBeDefined(); expect(info.close).toBeDefined(); @@ -224,7 +224,7 @@ describe('Candlestick data', () => { ], options, theme - ); + )!; expect(info.open).toBeDefined(); expect(info.close).toBeDefined(); @@ -278,7 +278,7 @@ describe('Candlestick data', () => { ], options, theme - ); + )!; expect(info.open).toBeDefined(); expect(info.close).toBeDefined();