Skip to content

Commit 6d033fd

Browse files
committed
fix test
1 parent 88acfd2 commit 6d033fd

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

dsc/tests/dsc_resource_list.tests.ps1

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,8 @@ Describe 'Tests for listing resources' {
6767
$jp = $line | ConvertFrom-Json
6868
if ($jp.activity) { # if line is a progress message
6969
$jp.id | Should -Not -BeNullOrEmpty
70-
$jp.percentComplete | Should -BeIn (0..100)
70+
$jp.totalItems | Should -Not -BeNullOrEmpty
71+
$jp.completedItems | Should -Not -BeNullOrEmpty
7172
$ProgressMessagesFound = $True
7273
}
7374
}

0 commit comments

Comments
 (0)