Do not call createContainer(getContainerName)

BaseBlobStoreIntegrationTest.getContainerName implicitly calls
createContainer.
This commit is contained in:
Andrew Gaul 2013-10-12 12:37:15 -07:00
parent 3aabd50790
commit f468a951b2
1 changed files with 0 additions and 4 deletions

View File

@ -55,8 +55,6 @@ public class SwiftContainerIntegrationLiveTest extends BaseContainerIntegrationT
String containerName = getContainerName(); String containerName = getContainerName();
assertTrue(swift.createContainer(containerName));
ImmutableMap<String, String> metadata = ImmutableMap.<String, String> of( ImmutableMap<String, String> metadata = ImmutableMap.<String, String> of(
"key1", "value1", "key1", "value1",
"key2", "value2"); "key2", "value2");
@ -80,8 +78,6 @@ public class SwiftContainerIntegrationLiveTest extends BaseContainerIntegrationT
"key1", "value1", "key1", "value1",
"key2", "value2", "key2", "value2",
"key3", "value3")); "key3", "value3"));
assertTrue(swift.createContainer(containerName, options));
ContainerMetadata containerMetadata = swift.getContainerMetadata(containerName); ContainerMetadata containerMetadata = swift.getContainerMetadata(containerName);