Index: Ringtoets/StabilityPointStructures/src/Ringtoets.StabilityPointStructures.Forms/PropertyClasses/StabilityPointStructureProperties.cs =================================================================== diff -u -ra8ebde754020d7971c4f7352846c9c9cb9688ab8 -rb1b90dc0fd6fbb088eee337f911779724e7e79cd --- Ringtoets/StabilityPointStructures/src/Ringtoets.StabilityPointStructures.Forms/PropertyClasses/StabilityPointStructureProperties.cs (.../StabilityPointStructureProperties.cs) (revision a8ebde754020d7971c4f7352846c9c9cb9688ab8) +++ Ringtoets/StabilityPointStructures/src/Ringtoets.StabilityPointStructures.Forms/PropertyClasses/StabilityPointStructureProperties.cs (.../StabilityPointStructureProperties.cs) (revision b1b90dc0fd6fbb088eee337f911779724e7e79cd) @@ -426,11 +426,11 @@ [ResourcesCategory(typeof(RingtoetsCommonFormsResources), "Categories_Schematization")] [ResourcesDisplayName(typeof(Resources), "Structure_LevellingCount_DisplayName")] [ResourcesDescription(typeof(Resources), "Structure_LevellingCount_Description")] - public string LevellingCount + public int LevellingCount { get { - return ProbabilityFormattingHelper.Format(data.LevellingCount); + return data.LevellingCount; } } Index: Ringtoets/StabilityPointStructures/test/Ringtoets.StabilityPointStructures.Forms.Test/PropertyClasses/StabilityPointStructurePropertiesTest.cs =================================================================== diff -u -rabf027a3519fdb584ae797edd62f2baaab6d6968 -rb1b90dc0fd6fbb088eee337f911779724e7e79cd --- Ringtoets/StabilityPointStructures/test/Ringtoets.StabilityPointStructures.Forms.Test/PropertyClasses/StabilityPointStructurePropertiesTest.cs (.../StabilityPointStructurePropertiesTest.cs) (revision abf027a3519fdb584ae797edd62f2baaab6d6968) +++ Ringtoets/StabilityPointStructures/test/Ringtoets.StabilityPointStructures.Forms.Test/PropertyClasses/StabilityPointStructurePropertiesTest.cs (.../StabilityPointStructurePropertiesTest.cs) (revision b1b90dc0fd6fbb088eee337f911779724e7e79cd) @@ -182,7 +182,7 @@ Assert.IsTrue(properties.ShipVelocity.DynamicReadOnlyValidationMethod("Mean")); Assert.IsTrue(properties.ShipVelocity.DynamicReadOnlyValidationMethod("CoefficientOfVariation")); - Assert.AreEqual(ProbabilityFormattingHelper.Format(structure.LevellingCount), properties.LevellingCount); + Assert.AreEqual(structure.LevellingCount, properties.LevellingCount); Assert.AreEqual(ProbabilityFormattingHelper.Format(structure.ProbabilityCollisionSecondaryStructure), properties.ProbabilityCollisionSecondaryStructure); Assert.AreEqual("Normaal", properties.FlowVelocityStructureClosable.DistributionType);