Merge pull request #1238 from JunggiKim/remove-unused-println
Remove unused println statements from test methods
This commit is contained in:
@@ -483,7 +483,6 @@ public class HttpPostIntegrationTests {
|
|||||||
@Bean
|
@Bean
|
||||||
public Consumer<Flux<String>> updates() {
|
public Consumer<Flux<String>> updates() {
|
||||||
return flux -> flux.subscribe(value -> {
|
return flux -> flux.subscribe(value -> {
|
||||||
System.out.println();
|
|
||||||
this.list.add(value);
|
this.list.add(value);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -126,7 +126,6 @@ public class FunctionEndpointInitializerTests {
|
|||||||
TestRestTemplate testRestTemplate = new TestRestTemplate();
|
TestRestTemplate testRestTemplate = new TestRestTemplate();
|
||||||
ResponseEntity<String> response = testRestTemplate
|
ResponseEntity<String> response = testRestTemplate
|
||||||
.getForEntity(new URI("http://localhost:" + port + "/reverse/stressed"), String.class);
|
.getForEntity(new URI("http://localhost:" + port + "/reverse/stressed"), String.class);
|
||||||
System.out.println();
|
|
||||||
assertThat(response.getBody()).isEqualTo("desserts");
|
assertThat(response.getBody()).isEqualTo("desserts");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user