Index: Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Create/HydraulicBoundaryLocationCreateExtensionsTest.cs =================================================================== diff -u -rc312034c7478db99d3c2ef96b1c351df806e8d21 -rc2bf0666539fa1a781c6d5d633ac292fa4fe2bd4 --- Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Create/HydraulicBoundaryLocationCreateExtensionsTest.cs (.../HydraulicBoundaryLocationCreateExtensionsTest.cs) (revision c312034c7478db99d3c2ef96b1c351df806e8d21) +++ Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Create/HydraulicBoundaryLocationCreateExtensionsTest.cs (.../HydraulicBoundaryLocationCreateExtensionsTest.cs) (revision c2bf0666539fa1a781c6d5d633ac292fa4fe2bd4) @@ -22,7 +22,6 @@ using System; using Application.Ringtoets.Storage.Create; using Application.Ringtoets.Storage.DbContext; - using NUnit.Framework; using Ringtoets.HydraRing.Data; @@ -53,7 +52,7 @@ var random = new Random(21); var coordinateX = random.NextDouble(); var coordinateY = random.NextDouble(); - var id = random.Next(0,150); + var id = random.Next(0, 150); int order = random.Next(); var hydraulicBoundaryLocation = new HydraulicBoundaryLocation(id, testName, coordinateX, coordinateY); var registry = new PersistenceRegistry(); @@ -86,7 +85,7 @@ // Assert Assert.IsNotNull(entity); 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); }