Skip to content

Commit 3dd6f0c

Browse files
committed
Fix test.
1 parent 4b09402 commit 3dd6f0c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

s3/src/test/java/ch/cyberduck/core/s3/S3StorageClassFeatureTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ public void testNotFound() throws Exception {
6161
@Test
6262
public void testSetClassFile() throws Exception {
6363
final S3StorageClassFeature feature = new S3StorageClassFeature(session, new S3AccessControlListFeature(session));
64-
final Path container = new Path("versioning-test-eu-central-1-cyberduck", EnumSet.of(Path.Type.volume, Path.Type.directory));
64+
final Path container = new Path("test-eu-central-1-cyberduck", EnumSet.of(Path.Type.volume, Path.Type.directory));
6565
assertNull(S3Object.STORAGE_CLASS_STANDARD, feature.getClass(container));
6666
final Path test = new S3TouchFeature(session, new S3AccessControlListFeature(session)).touch(new Path(container, new AlphanumericRandomStringService().random(), EnumSet.of(Path.Type.file)), new TransferStatus());
6767
assertEquals(S3Object.STORAGE_CLASS_STANDARD, feature.getClass(test));
@@ -91,7 +91,7 @@ public void testSetClassFileInGlacier() throws Exception {
9191

9292
@Test
9393
public void testSetClassPlaceholder() throws Exception {
94-
final Path container = new Path("versioning-test-eu-central-1-cyberduck", EnumSet.of(Path.Type.volume, Path.Type.directory));
94+
final Path container = new Path("test-eu-central-1-cyberduck", EnumSet.of(Path.Type.volume, Path.Type.directory));
9595
final S3AccessControlListFeature acl = new S3AccessControlListFeature(session);
9696
final Path test = new S3DirectoryFeature(session, new S3WriteFeature(session, acl), acl).mkdir(
9797
new Path(container, new AlphanumericRandomStringService().random(), EnumSet.of(Path.Type.directory)), new TransferStatus());

0 commit comments

Comments
 (0)