From a041c44c5b517166bb63e0db031ca35e558359d7 Mon Sep 17 00:00:00 2001 From: quoctruong91 Date: Wed, 13 Jul 2016 01:34:38 -0700 Subject: [PATCH] Fix a test failure where path name is not in the correct case --- test/powershell/Modules/PackageManagement/Nuget.Tests.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/powershell/Modules/PackageManagement/Nuget.Tests.ps1 b/test/powershell/Modules/PackageManagement/Nuget.Tests.ps1 index 26ee3ff69..dc6593ba3 100644 --- a/test/powershell/Modules/PackageManagement/Nuget.Tests.ps1 +++ b/test/powershell/Modules/PackageManagement/Nuget.Tests.ps1 @@ -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 }