From 23996b364e98695597f32971f532d15dc3d9d785 Mon Sep 17 00:00:00 2001 From: Erik Sundell Date: Wed, 9 Jan 2019 14:44:47 +0100 Subject: [PATCH] fix broken test --- .../datasource/stackdriver/components/Aggregations.test.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/app/plugins/datasource/stackdriver/components/Aggregations.test.tsx b/public/app/plugins/datasource/stackdriver/components/Aggregations.test.tsx index 7bc2c3cb536..160dd4d2105 100644 --- a/public/app/plugins/datasource/stackdriver/components/Aggregations.test.tsx +++ b/public/app/plugins/datasource/stackdriver/components/Aggregations.test.tsx @@ -48,7 +48,7 @@ describe('Aggregations', () => { }); it('', () => { const options = wrapper.state().aggOptions[0].options; - expect(options.length).toEqual(1); + expect(options.length).toEqual(5); expect(options.map(o => o.value)).toEqual(expect.arrayContaining(['REDUCE_NONE'])); }); });