From a911d36dea2baa5375cbe8b3a55a83648e8da326 Mon Sep 17 00:00:00 2001 From: Tobias Skarhed Date: Thu, 14 Jun 2018 12:00:54 +0200 Subject: [PATCH] Remove import --- .../datasource/elasticsearch/specs/elastic_response.jest.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/public/app/plugins/datasource/elasticsearch/specs/elastic_response.jest.ts b/public/app/plugins/datasource/elasticsearch/specs/elastic_response.jest.ts index e02e675cae0..ea9d10f989f 100644 --- a/public/app/plugins/datasource/elasticsearch/specs/elastic_response.jest.ts +++ b/public/app/plugins/datasource/elasticsearch/specs/elastic_response.jest.ts @@ -1,4 +1,3 @@ -import { describe, beforeEach, it, expect } from 'test/lib/common'; import { ElasticResponse } from '../elastic_response'; describe('ElasticResponse', () => { @@ -422,7 +421,7 @@ describe('ElasticResponse', () => { it('should return table with byte and count', () => { expect(result.data[0].rows.length).toBe(3); - expect(result.data[0].columns).to.eql([{ text: 'bytes', filterable: true }, { text: 'Count' }]); + expect(result.data[0].columns).toEqual([{ text: 'bytes', filterable: true }, { text: 'Count' }]); }); });