Ignore intermittently failing test until fixed

Should be fixed in DATAREDIS-108
This commit is contained in:
Jennifer Hickey
2013-08-01 11:46:17 -07:00
parent c565842986
commit 8a32aea92d

View File

@@ -26,6 +26,7 @@ import java.util.concurrent.atomic.AtomicBoolean;
import org.junit.After;
import org.junit.AfterClass;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.Parameterized;
@@ -148,8 +149,8 @@ public class RedisAtomicTests {
assertEquals(longCounter.get(), keyCopy.get());
}
// DATAREDIS-108
@Test
@Ignore("DATAREDIS-108 Test is intermittently failing")
public void testCompareSet() throws Exception {
// Txs not supported in Jredis
assumeTrue(!ConnectionUtils.isJredis(factory));