Skip to content

Commit cb4674d

Browse files
authored
Correct comment in RemoteChunkingJobFunctionalTests (#4822)
Streamline comment to be more readable Signed-off-by: Mohamed Macow <[email protected]>
1 parent 45e2b78 commit cb4674d

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

spring-batch-samples/src/test/java/org/springframework/batch/samples/chunking/RemoteChunkingJobFunctionalTests.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,10 +77,9 @@ void testRemoteChunkingJob(@Autowired Job job) throws Exception {
7777
JobExecution jobExecution = this.jobLauncher.run(job, new JobParameters());
7878

7979
// then
80+
// the manager sent 2 chunks ({1, 2, 3} and {4, 5, 6}) to workers
8081
assertEquals(ExitStatus.COMPLETED.getExitCode(), jobExecution.getExitStatus().getExitCode());
81-
assertEquals("Waited for 2 results.", // the manager sent 2 chunks ({1, 2,
82-
// 3} and {4, 5, 6}) to workers
83-
jobExecution.getExitStatus().getExitDescription());
82+
assertEquals("Waited for 2 results.", jobExecution.getExitStatus().getExitDescription());
8483
}
8584

8685
}

0 commit comments

Comments
 (0)