Skip to content

Commit 9f962b9

Browse files
committed
Swap order
1 parent d4ee15d commit 9f962b9

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

dsc/tests/dsc_extension_discover.tests.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@ Describe 'Discover extension tests' {
2525
$LASTEXITCODE | Should -Be 0
2626
if ($IsWindows) {
2727
$out.Count | Should -Be 3 -Because ($out | Out-String)
28-
$out[0].type | Should -Be 'Microsoft.Windows.Appx/Discover'
29-
$out[0].version | Should -Be '0.1.0'
28+
$out[0].type | Should -BeExactly 'Microsoft.PowerShell/Discover'
29+
$out[0].version | Should -BeExactly '0.1.0'
3030
$out[0].capabilities | Should -BeExactly @('discover')
3131
$out[0].manifest | Should -Not -BeNullOrEmpty
32-
$out[1].type | Should -BeExactly 'Microsoft.PowerShell/Discover'
32+
$out[1].type | Should -BeExactly 'Microsoft.Windows.Appx/Discover'
3333
$out[1].version | Should -BeExactly '0.1.0'
3434
$out[1].capabilities | Should -BeExactly @('discover')
3535
$out[1].manifest | Should -Not -BeNullOrEmpty

0 commit comments

Comments
 (0)