Index: Ringtoets/Common/test/Ringtoets.Common.Service.Test/WaveHeightCalculationActivityTest.cs =================================================================== diff -u -r1e533850c7711172462df1e8f569b9f3ff950045 -ra97c4ffe5254af061462539883d25722be13e539 --- Ringtoets/Common/test/Ringtoets.Common.Service.Test/WaveHeightCalculationActivityTest.cs (.../WaveHeightCalculationActivityTest.cs) (revision 1e533850c7711172462df1e8f569b9f3ff950045) +++ Ringtoets/Common/test/Ringtoets.Common.Service.Test/WaveHeightCalculationActivityTest.cs (.../WaveHeightCalculationActivityTest.cs) (revision a97c4ffe5254af061462539883d25722be13e539) @@ -271,7 +271,7 @@ using (new WaveHeightCalculationServiceConfig()) { var testService = (TestWaveHeightCalculationService) WaveHeightCalculationService.Instance; - testService.SetCalculationConvergenceOutput = CalculationConvergence.NotCalculated; + testService.CalculationConvergenceOutput = CalculationConvergence.NotCalculated; activity.Run(); } @@ -306,13 +306,16 @@ string validFilePath = Path.Combine(testDataPath, validFile); const int norm = 300; - var activity = new WaveHeightCalculationActivity(calculationMessageProviderMock, hydraulicBoundaryLocationMock, - validFilePath, "", norm); + var activity = new WaveHeightCalculationActivity(calculationMessageProviderMock, + hydraulicBoundaryLocationMock, + validFilePath, + "", + norm); using (new WaveHeightCalculationServiceConfig()) { var testService = (TestWaveHeightCalculationService) WaveHeightCalculationService.Instance; - testService.SetCalculationConvergenceOutput = CalculationConvergence.CalculatedNotConverged; + testService.CalculationConvergenceOutput = CalculationConvergence.CalculatedNotConverged; activity.Run(); }