Index: Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/TreeNodeInfos/WaveHeightLocationsContextTreeNodeInfoTest.cs =================================================================== diff -u -re4482bc747e679556909c776de35d824fb8bf6ff -rbf6f075099ac4af95a9c0065604d2c5a8a55cf8d --- Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/TreeNodeInfos/WaveHeightLocationsContextTreeNodeInfoTest.cs (.../WaveHeightLocationsContextTreeNodeInfoTest.cs) (revision e4482bc747e679556909c776de35d824fb8bf6ff) +++ Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/TreeNodeInfos/WaveHeightLocationsContextTreeNodeInfoTest.cs (.../WaveHeightLocationsContextTreeNodeInfoTest.cs) (revision bf6f075099ac4af95a9c0065604d2c5a8a55cf8d) @@ -544,12 +544,13 @@ Id = string.Empty }; + const string categoryBoundaryName = "Category"; var hydraulicBoundaryLocationCalculation = new HydraulicBoundaryLocationCalculation(); var context = new WaveHeightLocationsContext(assessmentSection.HydraulicBoundaryDatabase.Locations, assessmentSection, () => 0.01, hbl => hydraulicBoundaryLocationCalculation, - "Category"); + categoryBoundaryName); using (var treeViewControl = new TreeViewControl()) { @@ -590,14 +591,14 @@ { string[] msgs = messages.ToArray(); Assert.AreEqual(8, msgs.Length); - Assert.AreEqual($"Golfhoogte berekenen voor locatie '{locationName}' is gestart.", msgs[0]); + Assert.AreEqual($"Golfhoogte berekenen voor locatie '{locationName}' ({categoryBoundaryName}) is gestart.", msgs[0]); CalculationServiceTestHelper.AssertValidationStartMessage(msgs[1]); CalculationServiceTestHelper.AssertValidationEndMessage(msgs[2]); CalculationServiceTestHelper.AssertCalculationStartMessage(msgs[3]); - Assert.AreEqual($"Golfhoogte berekening voor locatie '{locationName}' is niet geconvergeerd.", msgs[4]); + Assert.AreEqual($"Golfhoogte berekening voor locatie '{locationName}' ({categoryBoundaryName}) is niet geconvergeerd.", msgs[4]); StringAssert.StartsWith("Golfhoogte berekening is uitgevoerd op de tijdelijke locatie", msgs[5]); CalculationServiceTestHelper.AssertCalculationEndMessage(msgs[6]); - Assert.AreEqual($"Golfhoogte berekenen voor locatie '{locationName}' is gelukt.", msgs[7]); + Assert.AreEqual($"Golfhoogte berekenen voor locatie '{locationName}' ({categoryBoundaryName}) is gelukt.", msgs[7]); }); HydraulicBoundaryLocationOutput output = hydraulicBoundaryLocationCalculation.Output;