diff --git a/Test/ChocolateyGet.tests.ps1 b/Test/ChocolateyGet.tests.ps1 index 69beaed..20e381e 100644 --- a/Test/ChocolateyGet.tests.ps1 +++ b/Test/ChocolateyGet.tests.ps1 @@ -54,7 +54,7 @@ Describe "$platform DSC-compliant package installation and uninstallation" { } Context 'with additional arguments' { $package = 'sysinternals' - $argsAndParams = '--paramsglobal --params "/InstallDir=c:\windows\temp\sysinternals /QuickLaunchShortcut=false" -y --installargs MaintenanceService=false' + # $argsAndParams = '--paramsglobal --params "/InstallDir=c:\windows\temp\sysinternals /QuickLaunchShortcut=false" -y --installargs MaintenanceService=false' It 'searches for the latest version of a package' { Find-Package -Provider $ChocolateyGet -Name $package -AdditionalArguments $argsAndParams -Verbose | Where-Object {$_.Name -contains $package} | Should Not BeNullOrEmpty @@ -84,7 +84,7 @@ Describe "$platform pipline-based package installation and uninstallation" { } Context 'with additional arguments' { $package = 'sysinternals' - $argsAndParams = '--paramsglobal --params "/InstallDir=c:\windows\temp\sysinternals /QuickLaunchShortcut=false" -y --installargs MaintenanceService=false' + # $argsAndParams = '--paramsglobal --params "/InstallDir=c:\windows\temp\sysinternals /QuickLaunchShortcut=false" -y --installargs MaintenanceService=false' It 'searches for and silently installs the latest version of a package' { Find-Package -Provider $ChocolateyGet -Name $package -Verbose | Install-Package -Force -AdditionalArguments $argsAndParams -Verbose | Where-Object {$_.Name -contains $package} | Should Not BeNullOrEmpty