Skip to content

Commit

Permalink
Change the assertion to not to catch the RAR warning (#3509)
Browse files Browse the repository at this point in the history
It is intent to catch the warning from Conflict Resolution.

Continue investigation on why RAR start to have such warning in #3508
  • Loading branch information
William Li committed Aug 5, 2019
1 parent 527e0e0 commit 4f452f6
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@ public void It_uses_hintpath_when_replacing_simple_name_references(bool useFacad
.Should().Be(correctHttpReference);
}

[FullMSBuildOnlyFact]
[Fact]
public void It_tolerates_newline_in_hint_path()
{
string hintPath = BuildReferencedBuildAndReturnOutputDllPath();
Expand Down Expand Up @@ -417,7 +417,7 @@ public void It_tolerates_newline_in_hint_path()
var buildCommand = new BuildCommand(Log, Path.Combine(testAsset.TestRoot, project.Name));
var msbuildBuildCommand = new MSBuildCommand(Log, "Build", buildCommand.FullPathProjectFile);
msbuildBuildCommand.Execute().Should().Pass()
.And.NotHaveStdOutContaining("Illegal characters in path");
.And.NotHaveStdOutContaining("System.ArgumentException");
}

private string BuildReferencedBuildAndReturnOutputDllPath()
Expand Down

0 comments on commit 4f452f6

Please sign in to comment.