Skip to content

Commit

Permalink
Do not validate Md5 if checksum value supplied
Browse files Browse the repository at this point in the history
  • Loading branch information
davidh44 committed Jun 10, 2024
1 parent d65acc6 commit 5210b0b
Showing 1 changed file with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,7 @@
* Integration tests for {@code PutObject}.
*/
public class PutObjectIntegrationTest extends S3IntegrationTestBase {
private static final String BUCKET = "embers-test-bucket";
//temporaryBucketName(PutObjectIntegrationTest.class);
private static final String BUCKET = temporaryBucketName(PutObjectIntegrationTest.class);
private static final String ASYNC_KEY = "async-key";
private static final String SYNC_KEY = "sync-key";

Expand All @@ -56,12 +55,12 @@ public class PutObjectIntegrationTest extends S3IntegrationTestBase {
@BeforeClass
public static void setUp() throws Exception {
S3IntegrationTestBase.setUp();
//createBucket(BUCKET);
createBucket(BUCKET);
}

@AfterClass
public static void tearDown() {
//deleteBucketAndAllContents(BUCKET);
deleteBucketAndAllContents(BUCKET);
}

@Test
Expand Down

0 comments on commit 5210b0b

Please sign in to comment.