Skip to content

Commit

Permalink
Fixed netfx System.Threading.Tasks.Tests fails on non-English Windows (
Browse files Browse the repository at this point in the history
…dotnet/corefx#28351)

* Fixed netfx System.Threading.Tasks.Tests fails on non-English Windows

* Removed RemoteInvoke. Replaced Contains on pattern match.

* Removed RemoteInvoke. Replaced Contains on pattern match.


Commit migrated from dotnet/corefx@3e5bf71
  • Loading branch information
AlexRadch authored and stephentoub committed Mar 23, 2018
1 parent 6362b96 commit a4d0abc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -544,7 +544,7 @@ private static void ValidateException(Exception e)
{
Assert.NotNull(e);
Assert.NotNull(e.StackTrace);
Assert.Contains("End of stack trace", e.StackTrace);
Assert.Matches(@"---.+---", e.StackTrace);
}

private class TrackOperationsSynchronizationContext : SynchronizationContext
Expand Down

0 comments on commit a4d0abc

Please sign in to comment.