Fix broken assertions in tests

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

See gh-26162
This commit is contained in:
izeye 2021-04-20 10:13:48 +09:00 committed by Stephane Nicoll
parent 57d35aba12
commit e53453c69c
2 changed files with 3 additions and 2 deletions

View File

@ -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 {

View File

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