From 0a5d24fc94ed1c0e6934d5f68a3636a67aaf01a2 Mon Sep 17 00:00:00 2001 From: Timothy Aldrich Date: Thu, 4 Jan 2024 17:15:56 -0500 Subject: [PATCH] fix: remove erroneous parameter for optionally running test - regression created in #93 --- .../Unit/stitch/private/SourceInfo/Get-TestItemInfo.Tests.ps1 | 4 ---- 1 file changed, 4 deletions(-) diff --git a/tests/Unit/stitch/private/SourceInfo/Get-TestItemInfo.Tests.ps1 b/tests/Unit/stitch/private/SourceInfo/Get-TestItemInfo.Tests.ps1 index f8ca522..fcd4298 100644 --- a/tests/Unit/stitch/private/SourceInfo/Get-TestItemInfo.Tests.ps1 +++ b/tests/Unit/stitch/private/SourceInfo/Get-TestItemInfo.Tests.ps1 @@ -41,9 +41,5 @@ Describe "Testing private function Get-TestItemInfo" -Tags @('unit', 'TestItemIn It "It Should have a 'Root' parameter" { $command.Parameters['Root'].Count | Should -Be 1 } - It "It Should have a 'RunTest' parameter" { - $command.Parameters['RunTest'].Count | Should -Be 1 - } } } -