Index: Ringtoets/StabilityPointStructures/test/Ringtoets.StabilityPointStructures.Data.Test/StabilityPointStructuresInputTest.cs =================================================================== diff -u -r6c641362a210f843ebb546b651df0a9b878fd7cf -r7b02f05192ce7e2394f0ed0d727a71d2abdf8a41 --- Ringtoets/StabilityPointStructures/test/Ringtoets.StabilityPointStructures.Data.Test/StabilityPointStructuresInputTest.cs (.../StabilityPointStructuresInputTest.cs) (revision 6c641362a210f843ebb546b651df0a9b878fd7cf) +++ Ringtoets/StabilityPointStructures/test/Ringtoets.StabilityPointStructures.Data.Test/StabilityPointStructuresInputTest.cs (.../StabilityPointStructuresInputTest.cs) (revision 7b02f05192ce7e2394f0ed0d727a71d2abdf8a41) @@ -100,7 +100,7 @@ AssertEqualValue(0.2, input.ShipMass.CoefficientOfVariation); Assert.IsNaN(input.ShipVelocity.Mean); AssertEqualValue(0.2, input.ShipVelocity.CoefficientOfVariation); - Assert.AreEqual(0, input.LevelingCount); + Assert.AreEqual(0, input.LevellingCount); Assert.AreEqual(double.NaN, input.ProbabilityCollisionSecondaryStructure); AssertEqualValue(double.NaN, input.AllowedLevelIncreaseStorage.Mean); AssertEqualValue(0.1, input.AllowedLevelIncreaseStorage.StandardDeviation); @@ -631,19 +631,19 @@ } [Test] - public void Properties_LevelingCount_ExpectedValues() + public void Properties_LevellingCount_ExpectedValues() { // Setup var input = new StabilityPointStructuresInput(); var random = new Random(22); - int levelingCount = random.Next(); + int levellingCount = random.Next(); // Call - input.LevelingCount = levelingCount; + input.LevellingCount = levellingCount; // Assert - Assert.AreEqual(levelingCount, input.LevelingCount); + Assert.AreEqual(levellingCount, input.LevellingCount); } [Test]