> @@ -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());
You don't need the parenthesis. (CONTAINER_PREFIX + new SecureRandom().nextInt()); could simply be CONTAINER_PREFIX + new SecureRandom().nextInt(); --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds/pull/336/files#r11126993