diff --git a/source/DSCResources/DSC_CMAdministrativeUser/DSC_CMAdministrativeUser.psm1 b/source/DSCResources/DSC_CMAdministrativeUser/DSC_CMAdministrativeUser.psm1 index 9639de0..87805d5 100644 --- a/source/DSCResources/DSC_CMAdministrativeUser/DSC_CMAdministrativeUser.psm1 +++ b/source/DSCResources/DSC_CMAdministrativeUser/DSC_CMAdministrativeUser.psm1 @@ -115,7 +115,7 @@ function Get-TargetResource Specifies an array of names for the collections desired to be removed from an administrative user. .PARAMETER Ensure - Specifies if the administrative User is to be present or absent. + Specifies if the administrative user is to be present or absent. #> function Set-TargetResource { @@ -463,7 +463,7 @@ function Set-TargetResource Specifies an array of names for the collections desired to be removed from an administrative user. .PARAMETER Ensure - Specifies if the administrative User is to be present or absent. + Specifies if the administrative user is to be present or absent. #> function Test-TargetResource { diff --git a/tests/Unit/CMAdministrativeUser.tests.ps1 b/tests/Unit/CMAdministrativeUser.tests.ps1 index 3c6f3d2..acec85e 100644 --- a/tests/Unit/CMAdministrativeUser.tests.ps1 +++ b/tests/Unit/CMAdministrativeUser.tests.ps1 @@ -171,7 +171,7 @@ try } Mock -CommandName Get-CMSecurityRole -MockWith { $true } - Mock -CommandName Get-CMSecurityScope -MockWith { $true} + Mock -CommandName Get-CMSecurityScope -MockWith { $true } Mock -CommandName Get-CMCollection -MockWith { $true } }