Skip to content

Commit

Permalink
Possible case sensitivity issue
Browse files Browse the repository at this point in the history
  • Loading branch information
ethanbergstrom committed Jan 23, 2021
1 parent 85242a4 commit a655f24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Test/ChocolateyGet.tests.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ Describe "$platform multi-source support" {
Register-PackageSource -Name $altSourceName -Provider $ChocolateyGet -Location $altSourceLocation | Where-Object {$_.Name -eq $altSourceName} | Should Not BeNullOrEmpty
}
It 'searches for and installs the latest version of a package from an alternate source' {
Find-Package -Provider $ChocolateyGet -Name $package -source $altSourceName | Install-Package -Force | Where-Object {$_.Name -contains $package} | Should Not BeNullOrEmpty
Find-Package -Provider $ChocolateyGet -Name $package -Source $altSourceName | Install-Package -Force | Where-Object {$_.Name -contains $package} | Should Not BeNullOrEmpty
}
It 'finds and uninstalls a package installed from an alternate source' {
Get-Package -Provider $ChocolateyGet -Name $package | Uninstall-Package | Where-Object {$_.Name -contains $package} | Should Not BeNullOrEmpty
Expand Down

0 comments on commit a655f24

Please sign in to comment.