>        String container = "container";
>        Blob blob = createMock(Blob.class);
>        MutableBlobMetadata md = createMock(MutableBlobMetadata.class);
>  
>        expect(blob.getMetadata()).andReturn(md).atLeastOnce();
>        expect(md.getName()).andReturn("rootpath/subpath/hello").atLeastOnce();
> -      expect(asyncBlobStore.createDirectory("container", 
> "rootpath/subpath")).andReturn(null);
> +      blobStore.createDirectory("container", "rootpath/subpath");

`expect` here?

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

Reply via email to