Skip to content

Commit

Permalink
Fixed missing closing brace in code sample
Browse files Browse the repository at this point in the history
  • Loading branch information
tomakehurst committed Dec 2, 2024
1 parent 37b767c commit c532de7
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion _docs/spring-boot.md
Original file line number Diff line number Diff line change
Expand Up @@ -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}")
Expand All @@ -77,6 +78,9 @@ class CustomPropertiesTest {

@Value("${customPort}")
private String customPort;

// ...
}
```


Expand Down

0 comments on commit c532de7

Please sign in to comment.