Fix a test failure where path name is not in the correct case

This commit is contained in:
quoctruong91 2016-07-13 01:34:38 -07:00
parent 8253bb9b85
commit a041c44c5b

View file

@ -1334,8 +1334,8 @@ Describe Get-PackageSource -Tags @('BVT', 'DRT') {
}
It "find-install-get-package Expect succeed" {
find-package jquery -source http://www.nuget.org/api/v2/ -provider nuget | install-package -destination $destination -force
(Test-Path $destination\jquery*) | should be $true
find-package jquery -source NugetTemp2 -provider nuget | install-package -destination $destination -force
(Test-Path $destination\jQuery*) | should be $true
$a=get-package -Destination $destination -Name jquery
$a | where { $_.Name -eq 'jQuery' } | should be $true
}