This is an automated email from the ASF dual-hosted git repository.
mcmellawatt pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode.git
The following commit(s) were added to refs/heads/develop by this push:
new 9c145bf GEODE-6143: Adding test category back to
CacheClientNotifierIntegrationTest (#2981)
9c145bf is described below
commit 9c145bf181b70b7f99cbac2587388d3a52e17e54
Author: Ryan McMahon <[email protected]>
AuthorDate: Tue Dec 11 12:25:32 2018 -0800
GEODE-6143: Adding test category back to CacheClientNotifierIntegrationTest
(#2981)
---
.../cache/tier/sockets/CacheClientNotifierIntegrationTest.java | 3 +++
1 file changed, 3 insertions(+)
diff --git
a/geode-core/src/integrationTest/java/org/apache/geode/internal/cache/tier/sockets/CacheClientNotifierIntegrationTest.java
b/geode-core/src/integrationTest/java/org/apache/geode/internal/cache/tier/sockets/CacheClientNotifierIntegrationTest.java
index 845f115..0f871f71 100644
---
a/geode-core/src/integrationTest/java/org/apache/geode/internal/cache/tier/sockets/CacheClientNotifierIntegrationTest.java
+++
b/geode-core/src/integrationTest/java/org/apache/geode/internal/cache/tier/sockets/CacheClientNotifierIntegrationTest.java
@@ -43,6 +43,7 @@ import java.util.concurrent.Future;
import org.apache.shiro.subject.Subject;
import org.junit.Assert;
import org.junit.Test;
+import org.junit.experimental.categories.Category;
import org.mockito.stubbing.Answer;
import org.apache.geode.CancelCriterion;
@@ -69,7 +70,9 @@ import org.apache.geode.internal.cache.InternalCache;
import org.apache.geode.internal.cache.InternalRegionArguments;
import org.apache.geode.internal.cache.LocalRegion;
import org.apache.geode.internal.security.SecurityService;
+import org.apache.geode.test.junit.categories.ClientSubscriptionTest;
+@Category({ClientSubscriptionTest.class})
public class CacheClientNotifierIntegrationTest {
@Test
public void
testCacheClientNotifier_NotifyClients_QRMCausesPrematureRemovalFromHAContainer()