Issue 86: fixed test

git-svn-id: http://jclouds.googlecode.com/svn/trunk@1880 3d8758e0-26b5-11de-8745-db77d3ebf521
This commit is contained in:
adrian.f.cole 2009-09-03 08:17:02 +00:00
parent 0412f20614
commit 535e2edadd
1 changed files with 1 additions and 1 deletions

View File

@ -115,7 +115,7 @@ public class AzureBlobConnectionLiveTest {
} catch (UndeclaredThrowableException e) {
AzureStorageResponseException htpe = (AzureStorageResponseException) e.getCause()
.getCause();
if (htpe.getError().getCode().equals("ContainerBeingDeleted")) {
if (htpe.getResponse().getStatusCode() == 409) {// TODO look for specific message
Thread.sleep(5000);
continue;
}