Fix sample based on previous commit

Resolves #813
This commit is contained in:
Oleg Zhurakousky
2022-02-23 16:02:17 +01:00
parent 7b225c640d
commit 0d62dbeaea

View File

@@ -19,12 +19,6 @@ public class WebTestClientTests {
@Autowired
private WebTestClient client;
@Test
public void words() {
client.get().uri("/words").exchange()
.expectStatus().isOk().expectBody(String.class).isEqualTo("[\"foo\",\"bar\"]");
}
@Test
public void uppercase() {
client.post().uri("/uppercase").body(Mono.just("foo"), String.class).exchange()