From 99ba31df84f3fbd1d94122b8eeb4b16414f6e128 Mon Sep 17 00:00:00 2001 From: delvedor Date: Thu, 24 Oct 2019 09:59:55 +0200 Subject: [PATCH] Fixed types test --- test/types/index.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/test/types/index.ts b/test/types/index.ts index 81d79dc6f..2ef2161b4 100644 --- a/test/types/index.ts +++ b/test/types/index.ts @@ -68,7 +68,6 @@ client.info((err: errors.ElasticsearchClientError | null, result: ApiResponse) = client.index({ index: 'test', - type: 'test', id: 'test', body: { hello: 'world' } }, (err: errors.ElasticsearchClientError | null, result: ApiResponse) => {}) @@ -76,7 +75,6 @@ client.index({ // request options client.index({ index: 'test', - type: 'test', id: 'test', body: { hello: 'world' } }, { @@ -96,7 +94,6 @@ client.info() client.index({ index: 'test', - type: 'test', id: 'test', body: { hello: 'world' } }) @@ -106,7 +103,6 @@ client.index({ // request options client.index({ index: 'test', - type: 'test', id: 'test', body: { hello: 'world' } }, {