We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4a438b9 commit 12316f7Copy full SHA for 12316f7
1 file changed
java11/src/test/java/feign/http2client/test/Http2ClientTest.java
@@ -152,15 +152,15 @@ void getWithRequestBody() {
152
final TestInterface api =
153
newBuilder().target(TestInterface.class, "https://nghttp2.org/httpbin/");
154
String result = api.getWithBody();
155
- assertThat(result).contains("\"data\": \"some request body\"");
+ assertThat(result).contains("\"data\":\"some request body\"");
156
}
157
158
@Test
159
void deleteWithRequestBody() {
160
161
162
String result = api.deleteWithBody();
163
164
165
166
@Override
0 commit comments