This is an automated email from the ASF dual-hosted git repository. khowe pushed a commit to branch develop in repository https://gitbox.apache.org/repos/asf/geode.git
commit 3fa3074af9b328a33ee2c811a711c36208c8cfce Author: Ken Howe <[email protected]> AuthorDate: Mon Mar 19 13:14:52 2018 -0700 GEODE-4771: Internal API was renamed ClusterConfigurationService was changed to InternalClusterConfigurationService after the original PR (#1574) was created. --- .../management/internal/cli/commands/ConfigurePDXCommandTest.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/geode-core/src/test/java/org/apache/geode/management/internal/cli/commands/ConfigurePDXCommandTest.java b/geode-core/src/test/java/org/apache/geode/management/internal/cli/commands/ConfigurePDXCommandTest.java index 9a4d87d..f448e6e 100644 --- a/geode-core/src/test/java/org/apache/geode/management/internal/cli/commands/ConfigurePDXCommandTest.java +++ b/geode-core/src/test/java/org/apache/geode/management/internal/cli/commands/ConfigurePDXCommandTest.java @@ -39,7 +39,7 @@ import org.junit.Test; import org.junit.experimental.categories.Category; import org.apache.geode.distributed.DistributedMember; -import org.apache.geode.distributed.internal.ClusterConfigurationService; +import org.apache.geode.distributed.internal.InternalClusterConfigurationService; import org.apache.geode.internal.cache.CacheConfig; import org.apache.geode.internal.cache.InternalCache; import org.apache.geode.internal.cache.xmlcache.CacheCreation; @@ -60,7 +60,7 @@ public class ConfigurePDXCommandTest { private XmlEntity xmlEntity; private CacheCreation cacheCreation; private ConfigurePDXCommand command; - private ClusterConfigurationService clusterConfigurationService; + private InternalClusterConfigurationService clusterConfigurationService; @Before public void setUp() throws Exception { @@ -68,7 +68,7 @@ public class ConfigurePDXCommandTest { xmlEntity = mock(XmlEntity.class); command = spy(ConfigurePDXCommand.class); cacheCreation = spy(CacheCreation.class); - clusterConfigurationService = mock(ClusterConfigurationService.class); + clusterConfigurationService = mock(InternalClusterConfigurationService.class); doReturn(cache).when(command).getCache(); doReturn(xmlEntity).when(command).createXmlEntity(any()); -- To stop receiving notification emails like this one, please contact [email protected].
