Skip to content

Commit 4da3ac5

Browse files
author
Hovsep Mkrtchyan
committed
Fixed indentation
1 parent 361af2b commit 4da3ac5

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

src/ResourceManager/Profile/Commands.Profile.Test/LoginCmdletTests.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,6 @@ public void LoginWithBothSubscriptionIdAndNameThrowsCloudException()
166166
cmdlt.InvokeEndProcessing();
167167
}
168168

169-
170169
[Fact]
171170
[Trait(Category.RunType, Category.LiveOnly)]
172171
public void LoginWithRbacTenantOnly()

src/ResourceManager/Profile/Commands.Profile.Test/SubscriptionCmdletTests.ps1

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -85,17 +85,17 @@ function Test-SetAzureRmContextEndToEnd
8585

8686
function Test-SetAzureRmContextWithoutSubscription
8787
{
88-
$allSubscriptions = Get-AzureRmSubscription -All
89-
$firstSubscription = $allSubscriptions[0]
90-
$id = $firstSubscription.SubscriptionId
91-
$tenantId = $firstSubscription.TenantId
88+
$allSubscriptions = Get-AzureRmSubscription -All
89+
$firstSubscription = $allSubscriptions[0]
90+
$id = $firstSubscription.SubscriptionId
91+
$tenantId = $firstSubscription.TenantId
9292

9393
Assert-True { $tenantId -ne $null }
9494

9595
Set-AzureRmContext -TenantId $tenantId
9696
$context = Get-AzureRmContext
9797

98-
Assert-True { $context.Subscription -eq $null }
98+
Assert-True { $context.Subscription -eq $null }
9999
Assert-True { $context.Tenant -ne $null }
100100
Assert-AreEqual $context.Tenant.TenantId $firstSubscription.TenantId
101101
}

0 commit comments

Comments
 (0)