From 973179e2bd11411baeda5f9e1dfffacdeca0a7b8 Mon Sep 17 00:00:00 2001 From: Mohamed Macow <58916277+darth-raijin@users.noreply.github.com> Date: Thu, 1 May 2025 12:07:26 +0200 Subject: [PATCH] Correct line comment Signed-off-by: Mohamed Macow <58916277+darth-raijin@users.noreply.github.com> --- .../samples/chunking/RemoteChunkingJobFunctionalTests.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/spring-batch-samples/src/test/java/org/springframework/batch/samples/chunking/RemoteChunkingJobFunctionalTests.java b/spring-batch-samples/src/test/java/org/springframework/batch/samples/chunking/RemoteChunkingJobFunctionalTests.java index 07d5f93da5..98462c9d6d 100644 --- a/spring-batch-samples/src/test/java/org/springframework/batch/samples/chunking/RemoteChunkingJobFunctionalTests.java +++ b/spring-batch-samples/src/test/java/org/springframework/batch/samples/chunking/RemoteChunkingJobFunctionalTests.java @@ -78,8 +78,7 @@ void testRemoteChunkingJob(@Autowired Job job) throws Exception { // then assertEquals(ExitStatus.COMPLETED.getExitCode(), jobExecution.getExitStatus().getExitCode()); - assertEquals("Waited for 2 results.", // the manager sent 2 chunks ({1, 2, - // 3} and {4, 5, 6}) to workers + assertEquals("Waited for 2 results.", // the manager sent 2 chunks ({1, 2, 3} and {4, 5, 6}) to workers jobExecution.getExitStatus().getExitDescription()); }