Another attempt at fixing unit tests

This commit is contained in:
Sebastiaan Janssen
2016-01-27 15:47:19 +01:00
parent 49fc068b38
commit 1c58360891

View File

@@ -179,7 +179,7 @@ namespace Umbraco.Tests.Persistence.Repositories
Assert.AreEqual(@"@inherits Umbraco.Web.Mvc.UmbracoTemplatePage
@{
" + "\t" + @"Layout = null;
}".CrLf(), template.Content);
}".CrLf(), template.Content.CrLf());
}
}
@@ -209,7 +209,7 @@ namespace Umbraco.Tests.Persistence.Repositories
Assert.AreEqual(@"@inherits Umbraco.Web.Mvc.UmbracoTemplatePage
@{
" + "\t" + @"Layout = ""test.cshtml"";
}".CrLf(), template2.Content);
}".CrLf(), template2.Content.CrLf());
}
}