You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jclouds.apache.org by ga...@apache.org on 2018/02/09 06:38:28 UTC

[3/3] jclouds git commit: JCLOUDS-1335: Expect hot when no tier specified

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.


Project: http://git-wip-us.apache.org/repos/asf/jclouds/repo
Commit: http://git-wip-us.apache.org/repos/asf/jclouds/commit/3ab335e7
Tree: http://git-wip-us.apache.org/repos/asf/jclouds/tree/3ab335e7
Diff: http://git-wip-us.apache.org/repos/asf/jclouds/diff/3ab335e7

Branch: refs/heads/master
Commit: 3ab335e776b2e11ce32a856f71a4852120011c84
Parents: 5598381
Author: Andrew Gaul <ga...@apache.org>
Authored: Thu Feb 8 22:34:09 2018 -0800
Committer: Andrew Gaul <ga...@apache.org>
Committed: Thu Feb 8 22:35:49 2018 -0800

----------------------------------------------------------------------
 .../test/java/org/jclouds/azureblob/AzureBlobClientLiveTest.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/jclouds/blob/3ab335e7/providers/azureblob/src/test/java/org/jclouds/azureblob/AzureBlobClientLiveTest.java
----------------------------------------------------------------------
diff --git a/providers/azureblob/src/test/java/org/jclouds/azureblob/AzureBlobClientLiveTest.java b/providers/azureblob/src/test/java/org/jclouds/azureblob/AzureBlobClientLiveTest.java
index 306ecb7..7d727df 100644
--- a/providers/azureblob/src/test/java/org/jclouds/azureblob/AzureBlobClientLiveTest.java
+++ b/providers/azureblob/src/test/java/org/jclouds/azureblob/AzureBlobClientLiveTest.java
@@ -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);