From 11af25b9b7e136f23e64543daa7d6058a003564f Mon Sep 17 00:00:00 2001 From: "N. Taylor Mullen" Date: Thu, 8 Sep 2016 11:21:21 -0700 Subject: [PATCH] Fix travis 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 771e6780a0..835ca75e39 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); + Assert.Equal(expectedOutput, resultOutput, StringComparer.Ordinal, ignoreLineEndingDifferences: true); } } }