From 17c6cfcb4e42e89dfd42f85af1c15f6c79af99f0 Mon Sep 17 00:00:00 2001 From: "N. Taylor Mullen" Date: Thu, 8 Sep 2016 11:25:44 -0700 Subject: [PATCH] Actually fix build break. --- .../Internal/ViewComponentTagHelperChunkVisitorTest.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Microsoft.AspNetCore.Mvc.Razor.Host.Test/Internal/ViewComponentTagHelperChunkVisitorTest.cs b/test/Microsoft.AspNetCore.Mvc.Razor.Host.Test/Internal/ViewComponentTagHelperChunkVisitorTest.cs index 835ca75e39..876eed2f30 100644 --- a/test/Microsoft.AspNetCore.Mvc.Razor.Host.Test/Internal/ViewComponentTagHelperChunkVisitorTest.cs +++ b/test/Microsoft.AspNetCore.Mvc.Razor.Host.Test/Internal/ViewComponentTagHelperChunkVisitorTest.cs @@ -55,7 +55,7 @@ namespace Microsoft.AspNetCore.Mvc.Razor.Host.Test.Internal #endif // Assert - Assert.Equal(expectedOutput, resultOutput, StringComparer.Ordinal, ignoreLineEndingDifferences: true); + Assert.Equal(expectedOutput, resultOutput, ignoreLineEndingDifferences: true); } } }