mirror of https://github.com/apache/jclouds.git
JCLOUDS-1335: Expect hot when no tier specified
This worked earlier; GetBlobProperties must unconditionally emit the access tier now that it is out of public preview.
This commit is contained in:
parent
55983819a2
commit
3ab335e776
|
@ -606,7 +606,7 @@ public class AzureBlobClientLiveTest extends BaseBlobStoreIntegrationTest {
|
|||
|
||||
// default
|
||||
BlobProperties properties = getApi().getBlobProperties(privateContainer, blobName);
|
||||
assertThat(properties.getTier()).isNull();
|
||||
assertThat(properties.getTier()).isEqualTo(AccessTier.HOT);
|
||||
|
||||
// hot
|
||||
getApi().setBlobTier(privateContainer, blobName, AccessTier.HOT);
|
||||
|
|
Loading…
Reference in New Issue