We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bde20ca commit a26712bCopy full SHA for a26712b
vertx-core/src/test/java/io/vertx/tests/http/fileupload/HttpClientFileUploadTest.java
@@ -312,6 +312,7 @@ private List<Upload> testFileUploadFormMultipart(
312
});
313
req.endHandler(v -> {
314
req.response().end();
315
+ checker.accept(req);
316
317
318
startServer();
@@ -323,7 +324,7 @@ private List<Upload> testFileUploadFormMultipart(
323
324
.compose(HttpClientResponse::body))
325
.await();
326
- return toUpload;
327
+ return uploads;
328
}
329
330
static class Upload {
0 commit comments