Merge pull request #26162 from izeye

* pr/26162:
  Fix broken assertions in tests

Closes gh-26162
This commit is contained in:
Stephane Nicoll
2021-04-20 10:06:37 +02:00
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();