From 0109b6f709ee7994607b7da09efd3699b8e287c1 Mon Sep 17 00:00:00 2001 From: Anil Kutahyali Date: Sun, 21 Sep 2025 22:55:57 +0200 Subject: [PATCH] Fix grammar error in testing.adoc - Fixes grammatical error in the Unit Testing section Signed-off-by: Anil Kutahyali --- spring-batch-docs/modules/ROOT/pages/testing.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-batch-docs/modules/ROOT/pages/testing.adoc b/spring-batch-docs/modules/ROOT/pages/testing.adoc index 2c63b27d61..3fa6e19b6a 100644 --- a/spring-batch-docs/modules/ROOT/pages/testing.adoc +++ b/spring-batch-docs/modules/ROOT/pages/testing.adoc @@ -4,7 +4,7 @@ As with other application styles, it is extremely important to unit test any code written as part of a batch job. The Spring core documentation covers how to unit and integration -test with Spring in great detail, so it is not be repeated here. It is important, however, +test with Spring in great detail, so it will not be repeated here. It is important, however, to think about how to "`end to end`" test a batch job, which is what this chapter covers. The `spring-batch-test` project includes classes that facilitate this end-to-end test approach.