We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3eef7c4 + 5c0a648 commit f2318e4Copy full SHA for f2318e4
src/test/java/AppTest.java
@@ -261,7 +261,11 @@ public void partitionTest() {
261
);
262
for (int i = 0; i < getPartitionCount(integers.size(), 2); i++) {
263
List<Integer> partition = getListPartition(integers, 2, i);
264
- Assert.assertEquals(partition, partitionLists.get(i));
+ Assert.assertEquals(
265
+ "getListPartition() returned an unexpected partition!",
266
+ partition,
267
+ partitionLists.get(i)
268
+ );
269
}
270
printer.success("The partitionTest() test pass!");
271
0 commit comments