> @@ -87,7 +87,9 @@ public void testListContainers() throws Exception {
>     public void testCreateContainer() throws Exception {
>        boolean created = false;
>        while (!created) {
> -         privateContainer = prefix + new SecureRandom().nextInt();
> +
> +         privateContainer = (CONTAINER_PREFIX + new 
> SecureRandom().nextInt());

Can you explain how this change fixes the bug? If I read the code correctly, 
CONTAINER_PREFIX is defined as follows:

<code>
public static final String CONTAINER_PREFIX = (System.getProperty("user.name") 
+ "-blobstore").toLowerCase();
</code>

Therefore even this result in a container name starting with upper case letter.

---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/336/files#r11105342

Reply via email to