Skip to content

Commit 78aa631

Browse files
authored
Apply suggestion from @zoewangg
1 parent d43625b commit 78aa631

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

services/s3/src/test/java/software/amazon/awssdk/services/s3/internal/multipart/utils/MultipartUploadTestUtils.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,9 +77,9 @@ public static void stubSuccessfulPutObjectCall(S3AsyncClient s3AsyncClient) {
7777

7878
@Override
7979
public CompletableFuture<PutObjectResponse> answer(InvocationOnMock invocationOnMock) {
80-
AsyncRequestBody AsyncRequestBody = invocationOnMock.getArgument(1);
80+
AsyncRequestBody asyncRequestBody = invocationOnMock.getArgument(1);
8181
// Draining the request body
82-
AsyncRequestBody.subscribe(b -> {
82+
asyncRequestBody.subscribe(b -> {
8383
});
8484

8585
return CompletableFuture.completedFuture(PutObjectResponse.builder()

0 commit comments

Comments
 (0)