From 596a533a3726136de1e6211902b417f53b93a9d4 Mon Sep 17 00:00:00 2001 From: Shawn Melton <11204251+wsmelton@users.noreply.github.com> Date: Wed, 3 Jan 2024 14:00:05 -0600 Subject: [PATCH] (do Get-DbaStartupParameter) --- tests/Get-DbaStartupParameter.Tests.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Get-DbaStartupParameter.Tests.ps1 b/tests/Get-DbaStartupParameter.Tests.ps1 index ca2e438f4d..e7403071c1 100644 --- a/tests/Get-DbaStartupParameter.Tests.ps1 +++ b/tests/Get-DbaStartupParameter.Tests.ps1 @@ -23,7 +23,7 @@ Describe "$CommandName Integration Tests" -Tags "IntegrationTests" { It "Only outputs results for Simple parameter" { # Picking property that will not exist on Simple object output # Only check for property name because it may not have a value even when you don't use -Simple parameter - "CommandPromptStart" -notint $resultSimple.PSObject.Properties.Name | Should -BeTrue + "CommandPromptStart" -notin $resultSimple.PSObject.Properties.Name | Should -BeTrue } } } \ No newline at end of file