Skip to content

Commit 0b9925d

Browse files
committed
fix
1 parent 203f7fa commit 0b9925d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/NuGet.Core.FuncTests/NuGet.XPlat.FuncTest/Package/Download/PackageDownloadRunnerTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,7 @@ [new PackageSource(sourceDir)],
337337
foreach (var (id, version) in expectedPackages)
338338
{
339339
second.Should().Be(PackageDownloadRunner.ExitCodeSuccess);
340-
var installDir = Path.Combine(outputDir, id, version);
340+
var installDir = Path.Combine(outputDir, id.ToLowerInvariant(), version);
341341
Directory.Exists(installDir).Should().BeTrue();
342342
File.Exists(Path.Combine(installDir, $"{id.ToLowerInvariant()}.{version}.nupkg")).Should().BeTrue();
343343
}

0 commit comments

Comments
 (0)