Removed the default for 'jclouds.tweetstore.blobstores' which would not work in any case if the required credential properties were not available

This commit is contained in:
Andrew Phillips 2011-07-07 21:44:34 -04:00
parent 4f09edec73
commit 0b7bcb7b3f
1 changed files with 1 additions and 2 deletions

View File

@ -77,8 +77,7 @@ public class TweetStoreLiveTest {
private Map<String, BlobStoreContext> contexts; private Map<String, BlobStoreContext> contexts;
private String container; private String container;
private static final Iterable<String> blobstores = private static final Iterable<String> blobstores =
Splitter.on(',').split(System.getProperty(PROPERTY_TWEETSTORE_BLOBSTORES, Splitter.on(',').split(getRequiredSystemProperty(PROPERTY_TWEETSTORE_BLOBSTORES));
"cloudfiles-us,aws-s3,azureblob"));
private static final Properties props = new Properties(); private static final Properties props = new Properties();
@BeforeTest @BeforeTest