Skip to content

Commit 7082412

Browse files
committed
Class names consistent with PS guidance
1 parent b3c3bdd commit 7082412

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/ServiceManagement/RemoteApp/Commands.RemoteApp.Test/Vm/RemoteAppVm.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ public void GetVm()
117117
public void GetStaleAdVmObjects()
118118
{
119119
int countOfExpectedVms = 0;
120-
GetAzureRemoteAppVmStaleAdObjects mockCmdlet = SetUpTestCommon<GetAzureRemoteAppVmStaleAdObjects>();
120+
GetAzureRemoteAppVmStaleAdObject mockCmdlet = SetUpTestCommon<GetAzureRemoteAppVmStaleAdObject>();
121121
IEnumerable<string> result = null;
122122
IList<string> resulAdObjs = null;
123123

src/ServiceManagement/RemoteApp/Commands.RemoteApp/Vm/ClearAzureRemoteAppVmStaleAdObject.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
namespace Microsoft.WindowsAzure.Management.RemoteApp.Cmdlets
2525
{
2626
[Cmdlet(VerbsCommon.Clear, "AzureRemoteAppVmStaleAdObject", SupportsShouldProcess = true, ConfirmImpact = ConfirmImpact.High), OutputType(typeof(string))]
27-
public class ClearAzureRemoteAppVmStaleAdObjects : RdsStaleAdObjectCmdlet
27+
public class ClearAzureRemoteAppVmStaleAdObject : RdsStaleAdObjectCmdlet
2828
{
2929
[Parameter(Mandatory = true,
3030
Position = 0,

src/ServiceManagement/RemoteApp/Commands.RemoteApp/Vm/GetAzureRemoteAppVmStaleAdObject.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
namespace Microsoft.WindowsAzure.Management.RemoteApp.Cmdlets
2424
{
2525
[Cmdlet(VerbsCommon.Get, "AzureRemoteAppVmStaleAdObject"), OutputType(typeof(string))]
26-
public class GetAzureRemoteAppVmStaleAdObjects : RdsStaleAdObjectCmdlet
26+
public class GetAzureRemoteAppVmStaleAdObject : RdsStaleAdObjectCmdlet
2727
{
2828
[Parameter(Mandatory = true,
2929
Position = 0,

0 commit comments

Comments
 (0)