fix a few tests, revert one change
This commit is contained in:
parent
4d4ebf9d3a
commit
de6a4bd022
3 changed files with 3 additions and 3 deletions
|
@ -19,7 +19,7 @@ namespace Microsoft.DotNet.Tools.Test.Utilities
|
|||
{
|
||||
protected const string DefaultFramework = "netcoreapp1.0";
|
||||
protected const string DefaultLibraryFramework = "netstandard1.5";
|
||||
protected const string ConsoleLoggerOutputNormal = "--logger:console;verbosity=normal";
|
||||
protected const string ConsoleLoggerOutputNormal = "--logger console;verbosity=normal";
|
||||
private TempRoot _temp;
|
||||
private static TestAssets s_testAssets;
|
||||
|
||||
|
|
|
@ -47,7 +47,7 @@ namespace Microsoft.DotNet.Cli.MSBuild.Tests
|
|||
[InlineData("--output")]
|
||||
public void ItAddsOutputPathToMsBuildInvocation(string optionName)
|
||||
{
|
||||
string path = Directory.GetCurrentDirectory();
|
||||
string path = "/some/path";
|
||||
var args = ArgsPrefix.Concat(new string[] { optionName, path }).ToArray();
|
||||
|
||||
var msbuildPath = "<msbuildpath>";
|
||||
|
|
|
@ -34,7 +34,7 @@ namespace Microsoft.DotNet.Cli.VSTest.Tests
|
|||
.GetDirectory("bin", configuration, "netcoreapp2.0")
|
||||
.GetFile($"{testAppName}.dll");
|
||||
|
||||
var argsForVstest = $"\"{outputDll.FullName}\" {TestBase.ConsoleLoggerOutputNormal}";
|
||||
var argsForVstest = $"\"{outputDll.FullName}\" --logger:console;verbosity=normal";
|
||||
|
||||
// Call vstest
|
||||
var result = new VSTestCommand().ExecuteWithCapturedOutput(argsForVstest);
|
||||
|
|
Loading…
Reference in a new issue