From 2913a0f624a2f7585c1a776e7d85b44df78df7f1 Mon Sep 17 00:00:00 2001 From: Sebastiaan Janssen Date: Wed, 27 Jan 2016 17:15:30 +0100 Subject: [PATCH] With only LineFeeds then...? --- .../Persistence/Repositories/TemplateRepositoryTest.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Umbraco.Tests/Persistence/Repositories/TemplateRepositoryTest.cs b/src/Umbraco.Tests/Persistence/Repositories/TemplateRepositoryTest.cs index cb8e4680b7..3f168d4741 100644 --- a/src/Umbraco.Tests/Persistence/Repositories/TemplateRepositoryTest.cs +++ b/src/Umbraco.Tests/Persistence/Repositories/TemplateRepositoryTest.cs @@ -179,7 +179,7 @@ namespace Umbraco.Tests.Persistence.Repositories Assert.AreEqual(@"@inherits Umbraco.Web.Mvc.UmbracoTemplatePage @{ " + "\t" + @"Layout = null; -}".CrLf(), template.Content.CrLf()); +}".Lf(), template.Content.Lf()); } } @@ -209,7 +209,7 @@ namespace Umbraco.Tests.Persistence.Repositories Assert.AreEqual(@"@inherits Umbraco.Web.Mvc.UmbracoTemplatePage @{ " + "\t" + @"Layout = ""test.cshtml""; -}".CrLf(), template2.Content.CrLf()); +}".Lf(), template2.Content.Lf()); } }