fix OS-specific path in test
This commit is contained in:
parent
ae312b7965
commit
339b1435cb
1 changed files with 1 additions and 1 deletions
|
@ -46,7 +46,7 @@ namespace Microsoft.DotNet.Cli.MSBuild.Tests
|
|||
[InlineData("--output")]
|
||||
public void ItAddsOutputPathToMsBuildInvocation(string optionName)
|
||||
{
|
||||
string path = "/some/path";
|
||||
string path = Directory.GetCurrentDirectory();
|
||||
var args = ArgsPrefix.Concat(new string[] { optionName, path }).ToArray();
|
||||
|
||||
var msbuildPath = "<msbuildpath>";
|
||||
|
|
Loading…
Reference in a new issue