DonalEvans commented on a change in pull request #7418: URL: https://github.com/apache/geode/pull/7418#discussion_r824918319
########## File path: geode-for-redis/src/distributedTest/java/org/apache/geode/redis/internal/commands/executor/list/LPopDUnitTest.java ########## @@ -141,20 +141,22 @@ private void lpushPerformAndVerify(String key, List<String> elementList) { private void lpopPerformAndVerify(String key, AtomicLong runningCount) { assertThat(jedis.llen(key)).isEqualTo(INITIAL_LIST_SIZE); - assertThat(jedis.llen(key)).isEqualTo(INITIAL_LIST_SIZE); int elementCount = INITIAL_LIST_SIZE - 1; while (jedis.llen(key) > 0 && runningCount.get() > 0) { - String expected = key + "-" + (elementCount - 1) + "-"; - String element = expected; + // String expected = makeElementString(key, elementCount); Review comment: This commented-out code should be removed. -- 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. To unsubscribe, e-mail: notifications-unsubscr...@geode.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org