Bumping versions

This commit is contained in:
spring-builds
2025-03-18 13:26:51 +00:00
parent c1c741d022
commit 2175fc1c8e

View File

@@ -246,9 +246,15 @@ public abstract class SpringCloudCircuitBreakerFilterFactoryTests extends BaseWe
@Test
public void filterPostFallback() {
testClient.post().uri("/post").body(BodyInserters.fromValue("hello"))
.header("Host", "www.circuitbreakerfallbackpost.org").exchange().expectStatus()
.isOk().expectBody().json("{\"body\":\"hello\"}");
testClient.post()
.uri("/post")
.body(BodyInserters.fromValue("hello"))
.header("Host", "www.circuitbreakerfallbackpost.org")
.exchange()
.expectStatus()
.isOk()
.expectBody()
.json("{\"body\":\"hello\"}");
}
}