Skip to content

Commit c5cbbaf

Browse files
committed
Formatting
1 parent 7cc109c commit c5cbbaf

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

spring-cloud-gateway-integration-tests/grpc/src/test/java/org/springframework/cloud/gateway/tests/grpc/JsonToGrpcApplicationTests.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,7 @@ public void shouldConvertFromJSONToGRPC() {
8181
headers.setContentType(MediaType.APPLICATION_JSON);
8282
HttpEntity<String> request = new HttpEntity<>("{\"firstName\":\"Duff\", \"lastName\":\"McKagan\"}", headers);
8383
String response = restTemplate
84-
.postForEntity("https://localhost:" + this.gatewayPort + "/json/hello",
85-
request, String.class)
84+
.postForEntity("https://localhost:" + this.gatewayPort + "/json/hello", request, String.class)
8685
.getBody();
8786

8887
Assertions.assertThat(response).isNotNull();

0 commit comments

Comments
 (0)