Fix documented default of spring.test.database.replace

The default of @AutoConfigureTestDatabase's replace attribute changed
from ANY to NON_TEST in 3.4 but the manually declared metadata for
spring.test.database.replace still advertised "any" as the default.

See gh-51709

Signed-off-by: ohchanKyu <okc0202@naver.com>
This commit is contained in:
ohchanKyu
2026-09-14 10:57:58 +02:00
committed by Stéphane Nicoll
parent 37ba142c04
commit 911c4a4326
@@ -4,7 +4,7 @@
"name": "spring.test.database.replace",
"type": "org.springframework.boot.jdbc.test.autoconfigure.AutoConfigureTestDatabase$Replace",
"description": "Type of existing DataSource to replace.",
"defaultValue": "any"
"defaultValue": "non-test"
}
]
}