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:32:56 UTC

[geode] branch WIP-GEODE-9892 updated: Yet 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 0e68d87  Yet more debug
0e68d87 is described below

commit 0e68d87850d3c8bb54e3493b5078ca76974c5f9b
Author: Ray Ingles <ri...@vmware.com>
AuthorDate: Sun Feb 13 23:28:36 2022 -0500

    Yet more debug
---
 .../geode/redis/internal/commands/executor/list/LPushDUnitTest.java    | 3 ++-
 1 file changed, 2 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 122a769..557aa52 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
@@ -130,7 +130,8 @@ public class LPushDUnitTest {
       long newLength = jedis.lpush(key, elementList.toArray(new String[] {}));
       assertThat(newLength - listLength).as("LPUSH returned %s, LLEN was %s, diff of %s not >= 3",
           newLength, listLength, newLength - listLength).isGreaterThanOrEqualTo(3);
-      assertThat((newLength - listLength) % 3).isEqualTo(0);
+      assertThat((newLength - listLength) % 3).as("LPUSH, list length %s not multiple of 3",
+          newLength).isEqualTo(0);
     }
     runningCount.decrementAndGet();
   }