We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3a7e851 + b7593bf commit 4884971Copy full SHA for 4884971
docs-v2/_docs/extending-wiremock.md
@@ -234,7 +234,7 @@ In Java 8 and above this can be achieved using a lambda:
234
235
```java
236
wireMockServer.stubFor(requestMatching(request ->
237
- MatchResult.of(request.getBody().length > 2048);
+ MatchResult.of(request.getBody().length > 2048)
238
).willReturn(aResponse().withStatus(422)));
239
```
240
0 commit comments