Skip to content

Commit

Permalink
[master] Update dependencies from dotnet/coreclr (dotnet/corefx#38449)
Browse files Browse the repository at this point in the history
* Update dependencies from https://github.com/dotnet/coreclr build 20190610.2

- Microsoft.NET.Sdk.IL - 3.0.0-preview7.19310.2
- Microsoft.NETCore.ILAsm - 3.0.0-preview7.19310.2
- Microsoft.NETCore.Runtime.CoreCLR - 3.0.0-preview7.19310.2

* Fix Debug.Print tests after Corelib bug fix


Commit migrated from dotnet/corefx@5ccac16
  • Loading branch information
dotnet-maestro[bot] authored and wtgodbe committed Jun 11, 2019
1 parent c61ef9b commit 7e484cc
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -121,8 +121,8 @@ public void Write()
[Fact]
public void Print()
{
VerifyLogged(() => Debug.Print("logged"), "logged");
VerifyLogged(() => Debug.Print("logged {0}", 5), "logged 5");
VerifyLogged(() => Debug.Print("logged"), "logged" + Environment.NewLine);
VerifyLogged(() => Debug.Print("logged {0}", 5), "logged 5" + Environment.NewLine);

GoToNextLine();
}
Expand Down

0 comments on commit 7e484cc

Please sign in to comment.