Skip to content

Commit

Permalink
Merge branch 'release-1.0.0-preview' of https://github.com/AzureRT/az…
Browse files Browse the repository at this point in the history
…ure-powershell into release-1.0.0-preview
  • Loading branch information
hyonholee committed Oct 9, 2015
2 parents 446e832 + 52b3191 commit 35c4469
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -106,9 +106,9 @@ public static void SetDefaultStorage()
defaultAzureSubscription = vmPowershellCmdlets.SetAzureSubscription(defaultAzureSubscription.SubscriptionName, defaultAzureSubscription.SubscriptionId, CredentialHelper.DefaultStorageName);
defaultAzureSubscription.CurrentStorageAccountName = CredentialHelper.DefaultStorageName;
vmPowershellCmdlets.SelectAzureSubscription(defaultAzureSubscription.SubscriptionName, true);
storageAccountKey = vmPowershellCmdlets.GetAzureStorageAccountKey(defaultAzureSubscription.CurrentStorageAccountName);
Assert.AreEqual(defaultAzureSubscription.CurrentStorageAccountName, storageAccountKey.StorageAccountName);
blobUrlRoot = (vmPowershellCmdlets.GetAzureStorageAccount(defaultAzureSubscription.CurrentStorageAccountName)[0].Endpoints.ToArray())[0];
storageAccountKey = vmPowershellCmdlets.GetAzureStorageAccountKey(CredentialHelper.DefaultStorageName);
Assert.AreEqual(CredentialHelper.DefaultStorageName, storageAccountKey.StorageAccountName);
blobUrlRoot = (vmPowershellCmdlets.GetAzureStorageAccount(CredentialHelper.DefaultStorageName)[0].Endpoints.ToArray())[0];
}
else
{
Expand Down

0 comments on commit 35c4469

Please sign in to comment.