Skip to content

Commit 72c1502

Browse files
committed
Fixed documentation of chunk-optional-processor project.
1 parent 1e95bce commit 72c1502

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

batch/chunk-optional-processor/src/test/java/org/javaee7/batch/chunk/optional/processor/BatchChunkOptionalProcessorTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ public void testBatchChunkOptionalProcessor() throws Exception {
7878

7979
// <1> The read count should be 10 elements. Check +MyItemReader+.
8080
assertEquals(10L, metricsMap.get(Metric.MetricType.READ_COUNT).longValue());
81-
// <2> The write count should be 5. Only half of the elements read are processed to be written.
81+
// <2> The write count should be same 10 read elements.
8282
assertEquals(10L, metricsMap.get(Metric.MetricType.WRITE_COUNT).longValue());
8383
// <3> The commit count should be 4. Checkpoint is on every 3rd read, 4 commits for read elements.
8484
assertEquals(10L / 3 + (10L % 3 > 0 ? 1 : 0),

0 commit comments

Comments
 (0)