From c532de700de8b7f31a7104285cc8c2562bf1dcb9 Mon Sep 17 00:00:00 2001 From: Tom Akehurst Date: Mon, 2 Dec 2024 17:50:27 +0000 Subject: [PATCH] Fixed missing closing brace in code sample --- _docs/spring-boot.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/_docs/spring-boot.md b/_docs/spring-boot.md index 776507bb..430b40c0 100644 --- a/_docs/spring-boot.md +++ b/_docs/spring-boot.md @@ -66,7 +66,8 @@ These property names can be changed as follows: @EnableWireMock( @ConfigureWireMock( baseUrlProperties = { "customUrl", "sameCustomUrl" }, - portProperties = "customPort")) + portProperties = "customPort" +)) class CustomPropertiesTest { @Value("${customUrl}") @@ -77,6 +78,9 @@ class CustomPropertiesTest { @Value("${customPort}") private String customPort; + + // ... +} ```