From 5788289a6d21bfab79524fc1410254ba156e31ed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christoph=20B=C3=BCscher?= Date: Wed, 18 Mar 2015 15:28:35 -0700 Subject: [PATCH] [TEST] Remove 'gtelte' feature from yaml tests Some yaml tests still used the 'gtelte' feature in their skip section. Since all language clients support this, the feature skip can be removed. --- rest-api-spec/test/create/75_ttl.yaml | 3 --- rest-api-spec/test/index/75_ttl.yaml | 2 -- rest-api-spec/test/indices.recovery/10_basic.yaml | 3 --- rest-api-spec/test/update/75_ttl.yaml | 3 --- .../java/org/elasticsearch/test/rest/support/Features.java | 2 +- 5 files changed, 1 insertion(+), 12 deletions(-) diff --git a/rest-api-spec/test/create/75_ttl.yaml b/rest-api-spec/test/create/75_ttl.yaml index f5ff7f5335a..099ed279020 100644 --- a/rest-api-spec/test/create/75_ttl.yaml +++ b/rest-api-spec/test/create/75_ttl.yaml @@ -1,9 +1,6 @@ --- "TTL": - - skip: - features: gtelte - - do: indices.create: index: test_1 diff --git a/rest-api-spec/test/index/75_ttl.yaml b/rest-api-spec/test/index/75_ttl.yaml index 046fba0f996..1d73d4ed40f 100644 --- a/rest-api-spec/test/index/75_ttl.yaml +++ b/rest-api-spec/test/index/75_ttl.yaml @@ -1,8 +1,6 @@ --- "TTL": - - skip: - features: gtelte - do: indices.create: index: test_1 diff --git a/rest-api-spec/test/indices.recovery/10_basic.yaml b/rest-api-spec/test/indices.recovery/10_basic.yaml index 86d396c2063..d8bba4a4b06 100644 --- a/rest-api-spec/test/indices.recovery/10_basic.yaml +++ b/rest-api-spec/test/indices.recovery/10_basic.yaml @@ -1,9 +1,6 @@ --- "Indices recovery test": - - skip: - features: gtelte - - do: indices.create: index: test_1 diff --git a/rest-api-spec/test/update/75_ttl.yaml b/rest-api-spec/test/update/75_ttl.yaml index 9d2e0531c52..f6b05b9eca2 100644 --- a/rest-api-spec/test/update/75_ttl.yaml +++ b/rest-api-spec/test/update/75_ttl.yaml @@ -1,9 +1,6 @@ --- "TTL": - - skip: - features: gtelte - - do: indices.create: index: test_1 diff --git a/src/test/java/org/elasticsearch/test/rest/support/Features.java b/src/test/java/org/elasticsearch/test/rest/support/Features.java index 5d76b93b747..d7f5647b11f 100644 --- a/src/test/java/org/elasticsearch/test/rest/support/Features.java +++ b/src/test/java/org/elasticsearch/test/rest/support/Features.java @@ -34,7 +34,7 @@ import java.util.List; */ public final class Features { - private static final List SUPPORTED = Lists.newArrayList("gtelte", "stash_in_path", "groovy_scripting"); + private static final List SUPPORTED = Lists.newArrayList("stash_in_path", "groovy_scripting"); private Features() {