Index: Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/TreeNodeInfos/WaveHeightCalculationsGroupContextTreeNodeInfoTest.cs =================================================================== diff -u -rbcab4543e8b75f5d00850c4e7780097cfabf67da -re25695acf2407be4ea1a9ea6c1791aba5c0ca81f --- Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/TreeNodeInfos/WaveHeightCalculationsGroupContextTreeNodeInfoTest.cs (.../WaveHeightCalculationsGroupContextTreeNodeInfoTest.cs) (revision bcab4543e8b75f5d00850c4e7780097cfabf67da) +++ Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/TreeNodeInfos/WaveHeightCalculationsGroupContextTreeNodeInfoTest.cs (.../WaveHeightCalculationsGroupContextTreeNodeInfoTest.cs) (revision e25695acf2407be4ea1a9ea6c1791aba5c0ca81f) @@ -497,19 +497,19 @@ Assert.IsTrue(calculationsContexts.All(c => ReferenceEquals(assessmentSection, c.AssessmentSection))); - Assert.AreEqual("Categorie A+->A", calculationsContexts[0].CategoryBoundaryName); + Assert.AreEqual("A+->A", calculationsContexts[0].CategoryBoundaryName); Assert.AreSame(assessmentSection.WaveHeightCalculationsForFactorizedSignalingNorm, calculationsContexts[0].WrappedData); Assert.AreEqual(signalingNorm / 30, calculationsContexts[0].GetNormFunc()); - Assert.AreEqual("Categorie A->B", calculationsContexts[1].CategoryBoundaryName); + Assert.AreEqual("A->B", calculationsContexts[1].CategoryBoundaryName); Assert.AreSame(assessmentSection.WaveHeightCalculationsForSignalingNorm, calculationsContexts[1].WrappedData); Assert.AreEqual(signalingNorm, calculationsContexts[1].GetNormFunc()); - Assert.AreEqual("Categorie B->C", calculationsContexts[2].CategoryBoundaryName); + Assert.AreEqual("B->C", calculationsContexts[2].CategoryBoundaryName); Assert.AreSame(assessmentSection.WaveHeightCalculationsForLowerLimitNorm, calculationsContexts[2].WrappedData); Assert.AreEqual(lowerLimitNorm, calculationsContexts[2].GetNormFunc()); - Assert.AreEqual("Categorie C->D", calculationsContexts[3].CategoryBoundaryName); + Assert.AreEqual("C->D", calculationsContexts[3].CategoryBoundaryName); Assert.AreSame(assessmentSection.WaveHeightCalculationsForFactorizedLowerLimitNorm, calculationsContexts[3].WrappedData); Assert.AreEqual(lowerLimitNorm * 30, calculationsContexts[3].GetNormFunc()); }