We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 54d1210 commit f3e305aCopy full SHA for f3e305a
docs/src/test/java/com/example/webtestclient/ParameterizedOutput.java
@@ -41,11 +41,9 @@ public class ParameterizedOutput {
41
// tag::parameterized-output[]
42
@Before
43
public void setUp() {
44
- this.webTestClient = WebTestClient.bindToApplicationContext(this.context)
45
- .configureClient()
+ this.webTestClient = WebTestClient.bindToApplicationContext(this.context).configureClient()
46
.filter(documentationConfiguration(this.restDocumentation))
47
- .entityExchangeResultConsumer(document("{method-name}/{step}"))
48
- .build();
+ .entityExchangeResultConsumer(document("{method-name}/{step}")).build();
49
}
50
// end::parameterized-output[]
51
0 commit comments