Skip to content

Commit a38af8d

Browse files
committed
Minor spacing fixes
1 parent 6e752be commit a38af8d

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

src/ResourceManager/Common/Commands.ScenarioTests.ResourceManager.Common/AzureRM.Storage.ps1

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -51,19 +51,17 @@ function Set-AzureRmStorageAccount
5151
[string] [Parameter(Position=1, ValueFromPipelineByPropertyName=$true)][alias("StorageAccountName")] $Name,
5252
[string] [Parameter(Position=2, ValueFromPipelineByPropertyName=$true)] $Type,
5353
[Hashtable[]] [Parameter(Position=3, ValueFromPipelineByPropertyName=$true)] $Tags)
54-
BEGIN {
54+
BEGIN {
5555
$context = Get-Context
56-
$client = Get-StorageClient $context
56+
$client = Get-StorageClient $context
5757
}
5858
PROCESS {
5959
$createParms = New-Object -Type Microsoft.Azure.Management.Storage.Models.StorageAccountUpdateParameters
60-
$createParms.AccountType = [Microsoft.Azure.Management.Storage.Models.AccountType]::StandardLRS
61-
60+
$createParms.AccountType = [Microsoft.Azure.Management.Storage.Models.AccountType]::StandardLRS
6261
$getTask = $client.StorageAccounts.UpdateAsync($ResourceGroupName, $Name, $createParms, [System.Threading.CancellationToken]::None)
63-
$sa = $getTask.Result
62+
$sa = $getTask.Result
6463
}
6564
END {}
66-
6765
}
6866

6967

0 commit comments

Comments
 (0)