From cb6e22eb46ac5c4713ca4ecd2d7e87570472de7c Mon Sep 17 00:00:00 2001 From: wantaek Date: Fri, 24 Jul 2026 10:52:06 +0900 Subject: [PATCH] Fix package of AutoConfigureCache in caching documentation See gh-51111 Signed-off-by: wantaek --- .../src/docs/antora/modules/reference/pages/io/caching.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/spring-boot-docs/src/docs/antora/modules/reference/pages/io/caching.adoc b/documentation/spring-boot-docs/src/docs/antora/modules/reference/pages/io/caching.adoc index 4eb34245a45..62e2734f347 100644 --- a/documentation/spring-boot-docs/src/docs/antora/modules/reference/pages/io/caching.adoc +++ b/documentation/spring-boot-docs/src/docs/antora/modules/reference/pages/io/caching.adoc @@ -284,7 +284,7 @@ Doing so makes sure that caching is not required by slice tests. For tests that enable a full context, such as javadoc:org.springframework.boot.test.context.SpringBootTest[format=annotation], an explicit configuration overriding the regular configuration is required. If caching is auto-configured, more options are available. -Tests can be annotated with javadoc:org.springframework.boot.test.autoconfigure.core.AutoConfigureCache[format=annotation] to replace the auto-configured javadoc:org.springframework.cache.CacheManager[] by a no-op implementation. +Tests can be annotated with javadoc:org.springframework.boot.cache.test.autoconfigure.AutoConfigureCache[format=annotation] to replace the auto-configured javadoc:org.springframework.cache.CacheManager[] by a no-op implementation. include-code::MyIntegrationTests[]