Index: Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Create/FailureMechanismSectionCreateExtensionsTest.cs =================================================================== diff -u -raf81664b5c0cb1af94c61530adbb6cd24fd5229f -rc2bf0666539fa1a781c6d5d633ac292fa4fe2bd4 --- Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Create/FailureMechanismSectionCreateExtensionsTest.cs (.../FailureMechanismSectionCreateExtensionsTest.cs) (revision af81664b5c0cb1af94c61530adbb6cd24fd5229f) +++ Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Create/FailureMechanismSectionCreateExtensionsTest.cs (.../FailureMechanismSectionCreateExtensionsTest.cs) (revision c2bf0666539fa1a781c6d5d633ac292fa4fe2bd4) @@ -20,7 +20,6 @@ // All rights reserved. using System; - using Application.Ringtoets.Storage.Create; using Application.Ringtoets.Storage.DbContext; using Application.Ringtoets.Storage.Serializers; @@ -53,7 +52,11 @@ { // Setup string testName = "testName"; - var geometryPoints = new[] { new Point2D(0, 0), new Point2D(0, 0) }; + var geometryPoints = new[] + { + new Point2D(0, 0), + new Point2D(0, 0) + }; var failureMechanismSection = new FailureMechanismSection(testName, geometryPoints); var registry = new PersistenceRegistry(); @@ -72,7 +75,11 @@ { // Setup string testName = "original name"; - var geometryPoints = new[] { new Point2D(0, 0), new Point2D(0, 0) }; + var geometryPoints = new[] + { + new Point2D(0, 0), + new Point2D(0, 0) + }; var failureMechanismSection = new FailureMechanismSection(testName, geometryPoints); var registry = new PersistenceRegistry(); @@ -81,8 +88,8 @@ // Assert Assert.AreNotSame(testName, entity.Name, - "To create stable binary representations/fingerprints, it's really important that strings are not shared."); + "To create stable binary representations/fingerprints, it's really important that strings are not shared."); Assert.AreEqual(testName, entity.Name); - } + } } } \ No newline at end of file