Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
Robothy committed Aug 7, 2024
1 parent 89b3780 commit 994ec15
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ void multipartUpload(AmazonS3 s3) throws IOException {
Map<String, String> userMetadata = object.getObjectMetadata().getUserMetadata();
assertEquals(2, userMetadata.size());
assertEquals("a.txt", userMetadata.get("x-filename"));
assertEquals("x-other", userMetadata.get("other-value"));
assertEquals("other-value", userMetadata.get("x-other"));

assertThrows(AmazonS3Exception.class, () -> {
s3.copyPart(new CopyPartRequest().withUploadId(initResult.getUploadId())
Expand Down

0 comments on commit 994ec15

Please sign in to comment.