Commit e53453c6 authored by izeye's avatar izeye Committed by Stephane Nicoll

Fix broken assertions in tests

This commit also restores the HTTP response body
assertion that has been dropped in 5873dddc.

See gh-26162
parent 57d35aba
......@@ -469,7 +469,7 @@ public abstract class AbstractReactiveWebServerFactoryTests {
try {
ContentResponse response = client.POST("http://localhost:" + this.webServer.getPort())
.content(new StringContentProvider("Hello World"), "text/plain").send();
assertThat(response.getStatus() == HttpStatus.OK.value());
assertThat(response.getStatus()).isEqualTo(HttpStatus.OK.value());
assertThat(response.getContentAsString()).isEqualTo("Hello World");
}
finally {
......
......@@ -1139,7 +1139,8 @@ public abstract class AbstractServletWebServerFactoryTests {
client.start();
try {
ContentResponse response = client.GET("http://localhost:" + this.webServer.getPort() + "/hello");
assertThat(response.getStatus() == HttpStatus.OK.value());
assertThat(response.getStatus()).isEqualTo(HttpStatus.OK.value());
assertThat(response.getContentAsString()).isEqualTo("Hello World");
}
finally {
client.stop();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment