Skip to content

Commit

Permalink
GEODE-3331: CI Failure: PDXNewWanDUnitTest > testWANPDX_RR_SerialSend…
Browse files Browse the repository at this point in the history
…er3Sites

* assertEquals now includes additional information if failure reproduces
  • Loading branch information
ladyVader committed Sep 8, 2017
1 parent 4b38201 commit 155a54b
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2822,7 +2822,8 @@ public static void validateRegionSize_PDX(String regionName, final int regionSiz
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));
}
}

Expand Down

0 comments on commit 155a54b

Please sign in to comment.