From 3b4185c2513026dc11f5975e95490fee70bc541a Mon Sep 17 00:00:00 2001 From: onyx-and-iris Date: Sat, 17 Dec 2022 19:33:32 +0000 Subject: [PATCH] update bus mode tests --- tests/higher.Tests.ps1 | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tests/higher.Tests.ps1 b/tests/higher.Tests.ps1 index 57cfc35..7fb3462 100644 --- a/tests/higher.Tests.ps1 +++ b/tests/higher.Tests.ps1 @@ -51,14 +51,14 @@ Describe -Tag 'higher', -TestName 'All Higher Tests' { $vmr.bus[$index].mono | Should -Be $expected } - It "Should set and get Bus[$index].mode_amix" -Skip:$ifBasic { - $vmr.bus[$index].mode_amix = $value - $vmr.bus[$index].mode_amix | Should -Be $expected + It "Should set and get Bus[$index].mode.amix" -Skip:$ifBasic { + $vmr.bus[$index].mode.amix = $value + $vmr.bus[$index].mode.amix | Should -Be $expected } - It "Should set and get Bus[$index].mode_centeronly" -Skip:$ifBasic { - $vmr.bus[$index].mode_centeronly = $value - $vmr.bus[$index].mode_centeronly | Should -Be $expected + It "Should set and get Bus[$index].mode.centeronly" -Skip:$ifBasic { + $vmr.bus[$index].mode.centeronly = $value + $vmr.bus[$index].mode.centeronly | Should -Be $expected } }