mirror of
https://github.com/spring-projects/spring-boot.git
synced 2026-09-17 12:09:16 +00:00
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:
+1
-1
@@ -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"
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user