Skip to content

Commit 12316f7

Browse files
committed
Fix test assertion
Signed-off-by: Marvin Froeder <velo.br@gmail.com>
1 parent 4a438b9 commit 12316f7

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

java11/src/test/java/feign/http2client/test/Http2ClientTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,15 +152,15 @@ void getWithRequestBody() {
152152
final TestInterface api =
153153
newBuilder().target(TestInterface.class, "https://nghttp2.org/httpbin/");
154154
String result = api.getWithBody();
155-
assertThat(result).contains("\"data\": \"some request body\"");
155+
assertThat(result).contains("\"data\":\"some request body\"");
156156
}
157157

158158
@Test
159159
void deleteWithRequestBody() {
160160
final TestInterface api =
161161
newBuilder().target(TestInterface.class, "https://nghttp2.org/httpbin/");
162162
String result = api.deleteWithBody();
163-
assertThat(result).contains("\"data\": \"some request body\"");
163+
assertThat(result).contains("\"data\":\"some request body\"");
164164
}
165165

166166
@Override

0 commit comments

Comments
 (0)