summaryrefslogtreecommitdiffstats
path: root/vendor/gopkg.in/olivere/elastic.v5/exists_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/gopkg.in/olivere/elastic.v5/exists_test.go')
-rw-r--r--vendor/gopkg.in/olivere/elastic.v5/exists_test.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/vendor/gopkg.in/olivere/elastic.v5/exists_test.go b/vendor/gopkg.in/olivere/elastic.v5/exists_test.go
index af6a04e80..9b834223d 100644
--- a/vendor/gopkg.in/olivere/elastic.v5/exists_test.go
+++ b/vendor/gopkg.in/olivere/elastic.v5/exists_test.go
@@ -12,7 +12,7 @@ import (
func TestExists(t *testing.T) {
client := setupTestClientAndCreateIndexAndAddDocs(t) //, SetTraceLog(log.New(os.Stdout, "", 0)))
- exists, err := client.Exists().Index(testIndexName).Type("comment").Id("1").Parent("tweet").Do(context.TODO())
+ exists, err := client.Exists().Index(testIndexName).Type("doc").Id("1").Do(context.TODO())
if err != nil {
t.Fatal(err)
}
@@ -25,7 +25,7 @@ func TestExistsValidate(t *testing.T) {
client := setupTestClient(t)
// No index -> fail with error
- res, err := NewExistsService(client).Type("tweet").Id("1").Do(context.TODO())
+ res, err := NewExistsService(client).Type("doc").Id("1").Do(context.TODO())
if err == nil {
t.Fatalf("expected Delete to fail without index name")
}
@@ -43,7 +43,7 @@ func TestExistsValidate(t *testing.T) {
}
// No id -> fail with error
- res, err = NewExistsService(client).Index(testIndexName).Type("tweet").Do(context.TODO())
+ res, err = NewExistsService(client).Index(testIndexName).Type("doc").Do(context.TODO())
if err == nil {
t.Fatalf("expected Delete to fail without index name")
}