GH-841 Add support for propagating errors from AWS Custom Runtime

Resolves #841
This commit is contained in:
Oleg Zhurakousky
2022-04-20 19:56:36 +02:00
parent b73b421366
commit 303b6459e2
3 changed files with 48 additions and 17 deletions

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()