summaryrefslogtreecommitdiffstats
path: root/vendor/gopkg.in/olivere/elastic.v5/indices_exists_type_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/gopkg.in/olivere/elastic.v5/indices_exists_type_test.go')
-rw-r--r--vendor/gopkg.in/olivere/elastic.v5/indices_exists_type_test.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/vendor/gopkg.in/olivere/elastic.v5/indices_exists_type_test.go b/vendor/gopkg.in/olivere/elastic.v5/indices_exists_type_test.go
index 2af3c2c5d..3795bd042 100644
--- a/vendor/gopkg.in/olivere/elastic.v5/indices_exists_type_test.go
+++ b/vendor/gopkg.in/olivere/elastic.v5/indices_exists_type_test.go
@@ -94,12 +94,12 @@ func TestIndicesExistsType(t *testing.T) {
}
// Check if type exists
- exists, err := client.TypeExists().Index(testIndexName).Type("tweet").Do(context.TODO())
+ exists, err := client.TypeExists().Index(testIndexName).Type("doc").Do(context.TODO())
if err != nil {
t.Fatal(err)
}
if !exists {
- t.Fatalf("type %s should exist in index %s, but doesn't\n", "tweet", testIndexName)
+ t.Fatalf("type %s should exist in index %s, but doesn't\n", "doc", testIndexName)
}
// Delete index
@@ -112,12 +112,12 @@ func TestIndicesExistsType(t *testing.T) {
}
// Check if type exists
- exists, err = client.TypeExists().Index(testIndexName).Type("tweet").Do(context.TODO())
+ exists, err = client.TypeExists().Index(testIndexName).Type("doc").Do(context.TODO())
if err != nil {
t.Fatal(err)
}
if exists {
- t.Fatalf("type %s should not exist in index %s, but it does\n", "tweet", testIndexName)
+ t.Fatalf("type %s should not exist in index %s, but it does\n", "doc", testIndexName)
}
}