jdeppe-pivotal commented on a change in pull request #6447:
URL: https://github.com/apache/geode/pull/6447#discussion_r629354992
##########
File path:
geode-apis-compatible-with-redis/src/acceptanceTest/java/org/apache/geode/redis/internal/executor/key/DelNativeRedisAcceptanceTest.java
##########
@@ -16,17 +16,27 @@
package org.apache.geode.redis.internal.executor.key;
import org.junit.ClassRule;
+import org.junit.Test;
-import org.apache.geode.NativeRedisTestRule;
+import org.apache.geode.redis.NativeRedisClusterTestRule;
public class DelNativeRedisAcceptanceTest extends AbstractDelIntegrationTest {
@ClassRule
- public static NativeRedisTestRule redis = new NativeRedisTestRule();
+ public static NativeRedisClusterTestRule redis = new
NativeRedisClusterTestRule();
@Override
public int getPort() {
- return redis.getPort();
+ return redis.getExposedPorts().get(0);
}
+ @Override
+ public void flushAll() {
+ redis.flushAll();
+ }
+
+ @Test
+ public void doNothing() {
+ // nothing done
+ }
Review comment:
Leftover from some debugging - now gone.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]