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:
Andrew Gaul 2018-02-08 22:34:09 -08:00
parent 55983819a2
commit 3ab335e776
1 changed files with 1 additions and 1 deletions

View File

@ -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);