Skip to content

Commit

Permalink
Update core/src/test/java/com/linecorp/armeria/internal/server/annota…
Browse files Browse the repository at this point in the history
…tion/AnnotatedServiceMultipartTest.java

Co-authored-by: jrhee17 <[email protected]>
  • Loading branch information
Bue-von-hon and jrhee17 authored Oct 2, 2024
1 parent 0e9c7f6 commit 70bcdad
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ void testUploadFileWithUnexpectedParameters(String path) throws Exception {
);
final AggregatedHttpResponse response =
server.blockingWebClient().execute(multipart.toHttpRequest(path));
assertEquals(HttpStatus.OK, response.status());
assertThat(HttpStatus.OK).isEqualTo(response.status());
assertThatJson(response.contentUtf8())
.isEqualTo("{\"file1\":\"foo\"," +
"\"path1\":\"bar\"," +
Expand Down

0 comments on commit 70bcdad

Please sign in to comment.