From 3bbe5916d14cc46aa6bf08f5bf8c9deb77d786e2 Mon Sep 17 00:00:00 2001 From: Alexander Reelsen Date: Tue, 26 Apr 2016 14:03:19 +0200 Subject: [PATCH] Fix compilation issue Original commit: elastic/x-pack-elasticsearch@803275d6349cba23372391a40ff9f5f5e80a9f0a --- .../org/elasticsearch/shield/VersionCompatibilityTests.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/elasticsearch/x-pack/shield/src/test/java/org/elasticsearch/shield/VersionCompatibilityTests.java b/elasticsearch/x-pack/shield/src/test/java/org/elasticsearch/shield/VersionCompatibilityTests.java index cc4a145ee61..6117701d4a8 100644 --- a/elasticsearch/x-pack/shield/src/test/java/org/elasticsearch/shield/VersionCompatibilityTests.java +++ b/elasticsearch/x-pack/shield/src/test/java/org/elasticsearch/shield/VersionCompatibilityTests.java @@ -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.onOrBefore(Version.V_5_0_0), is(true)); + Version.CURRENT.onOrBefore(Version.V_5_0_0_alpha2), is(true)); } }