You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by la...@apache.org on 2017/09/08 00:09:04 UTC

[geode] branch develop updated: GEODE-3331: CI Failure: PDXNewWanDUnitTest > testWANPDX_RR_SerialSender3Sites

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

ladyvader pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode.git


The following commit(s) were added to refs/heads/develop by this push:
     new 155a54b  GEODE-3331: CI Failure: PDXNewWanDUnitTest > testWANPDX_RR_SerialSender3Sites
155a54b is described below

commit 155a54ba71962230230198bf87cf38a563b14569
Author: Lynn Hughes-Godfrey <lh...@pivotal.io>
AuthorDate: Thu Sep 7 16:50:40 2017 -0700

    GEODE-3331: CI Failure: PDXNewWanDUnitTest > testWANPDX_RR_SerialSender3Sites
    
    * assertEquals now includes additional information if failure reproduces
---
 .../src/test/java/org/apache/geode/internal/cache/wan/WANTestBase.java | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/geode-wan/src/test/java/org/apache/geode/internal/cache/wan/WANTestBase.java b/geode-wan/src/test/java/org/apache/geode/internal/cache/wan/WANTestBase.java
index a4dc5ca..58d017c 100644
--- a/geode-wan/src/test/java/org/apache/geode/internal/cache/wan/WANTestBase.java
+++ b/geode-wan/src/test/java/org/apache/geode/internal/cache/wan/WANTestBase.java
@@ -2822,7 +2822,8 @@ public class WANTestBase extends JUnit4DistributedTestCase {
                 true, (regionSize <= r.keySet().size())));
     for (int i = 0; i < regionSize; i++) {
       LogWriterUtils.getLogWriter().info("For Key : Key_" + i + " : Values : " + r.get("Key_" + i));
-      assertEquals(new SimpleClass(i, (byte) i), r.get("Key_" + i));
+      assertEquals("keySet = " + r.keySet() + " values() = " + r.values(),
+          new SimpleClass(i, (byte) i), r.get("Key_" + i));
     }
   }
 

-- 
To stop receiving notification emails like this one, please contact
['"commits@geode.apache.org" <co...@geode.apache.org>'].