From 8a32aea92d325b3b7759ea4db42cc84844500524 Mon Sep 17 00:00:00 2001 From: Jennifer Hickey Date: Thu, 1 Aug 2013 11:46:17 -0700 Subject: [PATCH] Ignore intermittently failing test until fixed Should be fixed in DATAREDIS-108 --- .../data/redis/support/atomic/RedisAtomicTests.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/test/java/org/springframework/data/redis/support/atomic/RedisAtomicTests.java b/src/test/java/org/springframework/data/redis/support/atomic/RedisAtomicTests.java index c0ae0d96a..44882e218 100644 --- a/src/test/java/org/springframework/data/redis/support/atomic/RedisAtomicTests.java +++ b/src/test/java/org/springframework/data/redis/support/atomic/RedisAtomicTests.java @@ -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));