Index: Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Create/Piping/PipingCalculationScenarioCreateExtensionsTest.cs =================================================================== diff -u -r57bc6a475f6cdd57b1a0ebf70cdf533014afd1ff -r33d8b4610b6bc2979e35aa3e23b881a9933e40b5 --- Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Create/Piping/PipingCalculationScenarioCreateExtensionsTest.cs (.../PipingCalculationScenarioCreateExtensionsTest.cs) (revision 57bc6a475f6cdd57b1a0ebf70cdf533014afd1ff) +++ Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Create/Piping/PipingCalculationScenarioCreateExtensionsTest.cs (.../PipingCalculationScenarioCreateExtensionsTest.cs) (revision 33d8b4610b6bc2979e35aa3e23b881a9933e40b5) @@ -172,13 +172,8 @@ PipingCalculationEntity entity = calculation.Create(registry, 0); // Assert - Assert.AreNotSame(name, entity.Name, - "To create stable binary representations/fingerprints, it's really important that strings are not shared."); - Assert.AreEqual(name, entity.Name); - - Assert.AreNotSame(comments, entity.Comments, - "To create stable binary representations/fingerprints, it's really important that strings are not shared."); - Assert.AreEqual(comments, entity.Comments); + TestHelper.AssertAreEqualButNotSame(name, entity.Name); + TestHelper.AssertAreEqualButNotSame(comments, entity.Comments); } [Test]