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