update bus mode tests

This commit is contained in:
onyx-and-iris 2022-12-17 19:33:32 +00:00
parent deb3da15ea
commit 3b4185c251

View File

@ -51,14 +51,14 @@ Describe -Tag 'higher', -TestName 'All Higher Tests' {
$vmr.bus[$index].mono | Should -Be $expected $vmr.bus[$index].mono | Should -Be $expected
} }
It "Should set and get Bus[$index].mode_amix" -Skip:$ifBasic { It "Should set and get Bus[$index].mode.amix" -Skip:$ifBasic {
$vmr.bus[$index].mode_amix = $value $vmr.bus[$index].mode.amix = $value
$vmr.bus[$index].mode_amix | Should -Be $expected $vmr.bus[$index].mode.amix | Should -Be $expected
} }
It "Should set and get Bus[$index].mode_centeronly" -Skip:$ifBasic { It "Should set and get Bus[$index].mode.centeronly" -Skip:$ifBasic {
$vmr.bus[$index].mode_centeronly = $value $vmr.bus[$index].mode.centeronly = $value
$vmr.bus[$index].mode_centeronly | Should -Be $expected $vmr.bus[$index].mode.centeronly | Should -Be $expected
} }
} }