From ca1b05e30d10c7ea7f4fb8285286d86e9257a87d Mon Sep 17 00:00:00 2001 From: Morten Christensen Date: Thu, 27 Jun 2013 15:23:15 +0200 Subject: [PATCH] Correcting unit test after update to ContentType ctor --- src/Umbraco.Tests/Services/ContentTypeServiceTests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Umbraco.Tests/Services/ContentTypeServiceTests.cs b/src/Umbraco.Tests/Services/ContentTypeServiceTests.cs index 5e4842608a..efaf49c835 100644 --- a/src/Umbraco.Tests/Services/ContentTypeServiceTests.cs +++ b/src/Umbraco.Tests/Services/ContentTypeServiceTests.cs @@ -68,7 +68,7 @@ namespace Umbraco.Tests.Services Assert.That(ctHomePage.HasIdentity, Is.True); Assert.That(homeDoc.HasIdentity, Is.True); Assert.That(homeDoc.ContentTypeId, Is.EqualTo(ctHomePage.Id)); - Assert.That(addedContentType, Is.True); + Assert.That(addedContentType, Is.False);//False because its already added via the ContentType ctor } [Test]