Fix CoreCLR test pass on Linux (fixes #442).

This commit is contained in:
Cesar Blum Silveira 2015-10-19 14:18:13 -07:00
parent 221df71425
commit f00c7c6d06
1 changed files with 2 additions and 2 deletions

View File

@ -326,7 +326,7 @@ namespace Microsoft.AspNet.Html.Abstractions.Test
} }
[Fact] [Fact]
[ReplaceCulture] [ReplaceCulture("de-DE", "de-DE")]
public void Builder_AppendFormat_WithDifferentCurrentCulture() public void Builder_AppendFormat_WithDifferentCurrentCulture()
{ {
// Arrange // Arrange
@ -337,7 +337,7 @@ namespace Microsoft.AspNet.Html.Abstractions.Test
// Assert // Assert
Assert.Equal( Assert.Equal(
"HtmlEncode[[01 February 2015]]", "HtmlEncode[[Sonntag, 1. Februar 2015]]",
HtmlContentToString(builder)); HtmlContentToString(builder));
} }