Elastic{Index|ReindexIT} Remove tests for 6.2 and 6.3

We don't need to test these versions all the time, so remove the
tests.

Support for versions 6.2 and 6.3 is kept; if we need to check for
regressions we can manually enable the tests again later.

Change-Id: Ia15785ad9cc995b4672814dd346e02a6ee4026a0
This commit is contained in:
David Pursehouse 2018-09-06 08:49:28 +09:00
parent 647e1f7ad8
commit 0839ebdee5
2 changed files with 2 additions and 22 deletions

View File

@ -49,17 +49,7 @@ public class ElasticReindexIT extends AbstractReindexTests {
}
@ConfigSuite.Config
public static Config elasticsearchV6_2() {
return getConfig(ElasticVersion.V6_2);
}
@ConfigSuite.Config
public static Config elasticsearchV6_3() {
return getConfig(ElasticVersion.V6_3);
}
@ConfigSuite.Config
public static Config elasticsearchV6_4() {
public static Config elasticsearchV6() {
return getConfig(ElasticVersion.V6_4);
}

View File

@ -46,17 +46,7 @@ public class ElasticIndexIT extends AbstractIndexTests {
}
@ConfigSuite.Config
public static Config elasticsearchV6_2() {
return getConfig(ElasticVersion.V6_2);
}
@ConfigSuite.Config
public static Config elasticsearchV6_3() {
return getConfig(ElasticVersion.V6_3);
}
@ConfigSuite.Config
public static Config elasticsearchV6_4() {
public static Config elasticsearchV6() {
return getConfig(ElasticVersion.V6_4);
}