Fix version compatability test

This commit fixes the version compatability test by updating the version
to reflect the current version in core.

Original commit: elastic/x-pack-elasticsearch@0bb6dbc1c3
This commit is contained in:
Jason Tedor 2016-05-31 22:07:24 -04:00
parent c9db4c8576
commit b046a08842
1 changed files with 1 additions and 1 deletions

View File

@ -37,6 +37,6 @@ public class VersionCompatibilityTests extends ESTestCase {
*
*/
assertThat("Remove workaround in LicenseService class when es core supports merging cluster level custom metadata",
Version.CURRENT.equals(Version.V_5_0_0_alpha3), is(true));
Version.CURRENT.equals(Version.V_5_0_0), is(true));
}
}