Adding @Test to the class caused testApiPermutations to run. So, added a disabled Test annotation to it
Project: http://git-wip-us.apache.org/repos/asf/curator/repo Commit: http://git-wip-us.apache.org/repos/asf/curator/commit/aa976bbe Tree: http://git-wip-us.apache.org/repos/asf/curator/tree/aa976bbe Diff: http://git-wip-us.apache.org/repos/asf/curator/diff/aa976bbe Branch: refs/heads/master Commit: aa976bbe83a8961b33f76aa5b0a7302a3b5f8f39 Parents: a21c31c Author: randgalt <[email protected]> Authored: Thu Jul 20 17:36:10 2017 -0500 Committer: randgalt <[email protected]> Committed: Thu Jul 20 17:36:10 2017 -0500 ---------------------------------------------------------------------- .../org/apache/curator/framework/imps/TestReconfiguration.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/curator/blob/aa976bbe/curator-framework/src/test/java/org/apache/curator/framework/imps/TestReconfiguration.java ---------------------------------------------------------------------- diff --git a/curator-framework/src/test/java/org/apache/curator/framework/imps/TestReconfiguration.java b/curator-framework/src/test/java/org/apache/curator/framework/imps/TestReconfiguration.java index acf9df3..c6ff2bb 100644 --- a/curator-framework/src/test/java/org/apache/curator/framework/imps/TestReconfiguration.java +++ b/curator-framework/src/test/java/org/apache/curator/framework/imps/TestReconfiguration.java @@ -27,10 +27,10 @@ import org.apache.curator.framework.api.BackgroundCallback; import org.apache.curator.framework.api.CuratorEvent; import org.apache.curator.framework.api.CuratorEventType; import org.apache.curator.retry.ExponentialBackoffRetry; -import org.apache.curator.test.compatibility.CuratorTestBase; import org.apache.curator.test.InstanceSpec; import org.apache.curator.test.TestingCluster; import org.apache.curator.test.TestingZooKeeperServer; +import org.apache.curator.test.compatibility.CuratorTestBase; import org.apache.curator.test.compatibility.Timing2; import org.apache.curator.test.compatibility.Zk35MethodInterceptor; import org.apache.curator.utils.CloseableUtils; @@ -94,6 +94,7 @@ public class TestReconfiguration extends CuratorTestBase } @SuppressWarnings("ConstantConditions") + @Test(enabled = false) public void testApiPermutations() throws Exception { // not an actual test. Specifies all possible API possibilities
