Skip to content

Commit

Permalink
Resolving PR Comments
Browse files Browse the repository at this point in the history
  • Loading branch information
NEllis280 committed Jun 11, 2020
1 parent e76dff3 commit 80f33cc
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,13 +49,10 @@ function Get-TargetResource
switch ($fspProp.PropertyName)
{
'Throttle Count' { $throttleCount = $fspProp.Value }
'Throttle Interval' { $throttleInterval = $fspProp.Value }
'Throttle Interval' { $throttleInterval = $fspProp.Value/1000 }
}
}
$status = 'Present'

#Translate the throttle interval from milliseconds to seconds
$throttleInterval = $throttleInterval/1000
}
else
{
Expand Down
2 changes: 0 additions & 2 deletions tests/Unit/CMFallbackStatusPoint.tests.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,6 @@ Invoke-TestSetup
try
{
InModuleScope $script:dscResourceName {
$moduleResourceName = 'ConfigMgrCBDsc - DSC_CMFallbackStatusPoint'

Describe 'ConfigMgrCBDsc - DSC_CMFallbackStatusPoint\Get-TargetResource' -Tag 'Get'{
BeforeAll{
$getInput = @{
Expand Down

0 comments on commit 80f33cc

Please sign in to comment.