Fix declared type of spring.test.mockmvc.htmlunit.url

The manual metadata entry declares java.lang.Boolean while its
description and default value ("http://localhost") describe a URL
string, and MockMvcWebClientAutoConfiguration and
MockMvcWebDriverAutoConfiguration read the property as a string.

See gh-51110

Signed-off-by: wantaek <wantaekchoi@gmail.com>
This commit is contained in:
wantaek
2026-07-24 08:51:46 +02:00
committed by Stéphane Nicoll
parent f1e1aeac52
commit 8f832b659b
@@ -2,7 +2,7 @@
"properties": [
{
"name": "spring.test.mockmvc.htmlunit.url",
"type": "java.lang.Boolean",
"type": "java.lang.String",
"description": "URL to use when HtmlUnit expands relative paths.",
"defaultValue": "http://localhost"
},