You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by ri...@apache.org on 2022/02/14 04:03:06 UTC

[geode] branch WIP-GEODE-9892 updated: More debug

This is an automated email from the ASF dual-hosted git repository.

ringles pushed a commit to branch WIP-GEODE-9892
in repository https://gitbox.apache.org/repos/asf/geode.git


The following commit(s) were added to refs/heads/WIP-GEODE-9892 by this push:
     new f2b4c4c  More debug
f2b4c4c is described below

commit f2b4c4c3f531cc7beb4696af8f5e3f7d2c03733f
Author: Ray Ingles <ri...@vmware.com>
AuthorDate: Sun Feb 13 23:00:53 2022 -0500

    More debug
---
 .../geode/redis/internal/commands/executor/list/LPushDUnitTest.java   | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/geode-for-redis/src/distributedTest/java/org/apache/geode/redis/internal/commands/executor/list/LPushDUnitTest.java b/geode-for-redis/src/distributedTest/java/org/apache/geode/redis/internal/commands/executor/list/LPushDUnitTest.java
index 9b32860..122a769 100644
--- a/geode-for-redis/src/distributedTest/java/org/apache/geode/redis/internal/commands/executor/list/LPushDUnitTest.java
+++ b/geode-for-redis/src/distributedTest/java/org/apache/geode/redis/internal/commands/executor/list/LPushDUnitTest.java
@@ -201,7 +201,9 @@ public class LPushDUnitTest {
 
   private void verifyListLengthCondition(String key, AtomicLong runningCount) {
     while (runningCount.get() > 0) {
-      assertThat(jedis.llen(key) % 3).isEqualTo(0);
+      Long listLength = jedis.llen(key);
+      assertThat(listLength % 3).as("List length not a multiple of three: %s", listLength)
+          .isEqualTo(0);
     }
   }