File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
services/s3/src/it/java/software/amazon/awssdk/services/s3 Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change 46
46
* Integration tests for {@code PutObject}.
47
47
*/
48
48
public class PutObjectIntegrationTest extends S3IntegrationTestBase {
49
- private static final String BUCKET = "embers-test-bucket" ;
50
- //temporaryBucketName(PutObjectIntegrationTest.class);
49
+ private static final String BUCKET = temporaryBucketName (PutObjectIntegrationTest .class );
51
50
private static final String ASYNC_KEY = "async-key" ;
52
51
private static final String SYNC_KEY = "sync-key" ;
53
52
@@ -56,12 +55,12 @@ public class PutObjectIntegrationTest extends S3IntegrationTestBase {
56
55
@ BeforeClass
57
56
public static void setUp () throws Exception {
58
57
S3IntegrationTestBase .setUp ();
59
- // createBucket(BUCKET);
58
+ createBucket (BUCKET );
60
59
}
61
60
62
61
@ AfterClass
63
62
public static void tearDown () {
64
- // deleteBucketAndAllContents(BUCKET);
63
+ deleteBucketAndAllContents (BUCKET );
65
64
}
66
65
67
66
@ Test
You can’t perform that action at this time.
0 commit comments