Index: Ringtoets/Common/test/Ringtoets.Common.Service.Test/WaveHeightCalculationServiceTest.cs =================================================================== diff -u -r93044b3ed52a925c5321b68ff2beb886c6bf7068 -r0913b25b262329fc46c40cc84e4c127dae21b85f --- Ringtoets/Common/test/Ringtoets.Common.Service.Test/WaveHeightCalculationServiceTest.cs (.../WaveHeightCalculationServiceTest.cs) (revision 93044b3ed52a925c5321b68ff2beb886c6bf7068) +++ Ringtoets/Common/test/Ringtoets.Common.Service.Test/WaveHeightCalculationServiceTest.cs (.../WaveHeightCalculationServiceTest.cs) (revision 0913b25b262329fc46c40cc84e4c127dae21b85f) @@ -128,7 +128,7 @@ [Test] [TestCase(true)] [TestCase(false)] - public void Calculate_ValidWaveHeightCalculation_StartsCalculationWithRightParameters(bool readIllustationPoints) + public void Calculate_ValidWaveHeightCalculation_StartsCalculationWithRightParameters(bool readIllustrationPoints) { // Setup string validFilePath = Path.Combine(testDataPath, validFile); @@ -149,7 +149,7 @@ var calculation = mockRepository.Stub(); calculation.Stub(c => c.Name).Return(locationName); calculation.Expect(c => c.Id).Return(id); - calculation.Expect(c => c.CalculateIllustrationPoints).Return(readIllustationPoints); + calculation.Expect(c => c.CalculateIllustrationPoints).Return(readIllustrationPoints); var calculationMessageProvider = mockRepository.Stub(); calculationMessageProvider.Stub(calc => calc.GetCalculatedNotConvergedMessage(locationName)).Return(string.Empty); @@ -167,7 +167,7 @@ AssertInput(expectedInput, calculator.ReceivedInputs.Single()); Assert.IsFalse(calculator.IsCanceled); - Assert.AreEqual(readIllustationPoints, calculation.Output.HasIllustrationPoints); + Assert.AreEqual(readIllustrationPoints, calculation.Output.HasIllustrationPoints); } mockRepository.VerifyAll(); }