diff --git a/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc b/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc index 50dee734e8a..118ed3d675e 100644 --- a/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc +++ b/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc @@ -1660,7 +1660,7 @@ management one, something like: @RunWith(SpringJUnit4ClassRunner.class) @SpringApplicationConfiguration(classes = MyApplication.class) @WebAppConfiguration - @IntegrationTest({"server.port=0", "management.port"}) + @IntegrationTest({"server.port=0", "management.port=0"}) public class SomeIntegrationTests { ... } ----