Fix Microsoft.DotNet.Tools.Tests.Utillities.xproj name to match folder.

Also fixing GivenAProjectDependenciesCommandFactory test to expect a lower case path, since that is what the new NuGet does.
This commit is contained in:
Eric Erhardt 2016-07-26 07:47:14 -05:00
parent 2ac8ca0e07
commit d54bba96cd
3 changed files with 22 additions and 22 deletions

View file

@ -167,7 +167,7 @@ namespace Microsoft.DotNet.Cli.Utils.Tests
var command = factory.Create("dotnet-tool-with-output-name", null);
command.CommandArgs.Should().Contain(
Path.Combine("ToolWithOutputName", "1.0.0", "lib", "netcoreapp1.0", "dotnet-tool-with-output-name.dll"));
Path.Combine("toolwithoutputname", "1.0.0", "lib", "netcoreapp1.0", "dotnet-tool-with-output-name.dll"));
}
}
}