From 339b1435cbec74153b511544fffc7022c3de1353 Mon Sep 17 00:00:00 2001 From: jonsequitur Date: Wed, 15 Mar 2017 19:25:05 -0700 Subject: [PATCH] fix OS-specific path in test --- test/dotnet-msbuild.Tests/GivenDotnetCacheInvocation.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/dotnet-msbuild.Tests/GivenDotnetCacheInvocation.cs b/test/dotnet-msbuild.Tests/GivenDotnetCacheInvocation.cs index d0bb45cbf..a65a6793d 100644 --- a/test/dotnet-msbuild.Tests/GivenDotnetCacheInvocation.cs +++ b/test/dotnet-msbuild.Tests/GivenDotnetCacheInvocation.cs @@ -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 = "";