test/integration/storage_account.rb in fog-azure-rm-0.2.2 vs test/integration/storage_account.rb in fog-azure-rm-0.2.3
- old
+ new
@@ -68,11 +68,11 @@
storage_account = storage.storage_accounts.create(
name: grs_storage_account,
location: LOCATION,
resource_group: 'TestRG-SA',
- sku_name: 'Standard',
+ sku_name: Fog::Storage::AzureRM::SkuTier::Standard,
replication: 'GRS',
encryption: true
)
puts "Created storage account for standard grs replication: #{storage_account.name}"
@@ -84,10 +84,10 @@
storage_account = storage.storage_accounts.create(
name: premium_storage_acc,
location: LOCATION,
resource_group: 'TestRG-SA',
- sku_name: 'Premium',
+ sku_name: Fog::Storage::AzureRM::SkuTier::Premium,
replication: 'LRS'
)
puts "Created storage account for premium lrs replication: #{storage_account.name}"
########################################################################################################################