Index: Ringtoets/Common/test/Ringtoets.Common.Service.Test/DesignWaterLevelCalculationActivityTest.cs =================================================================== diff -u -rcc39748cdc122bfcc9bfb27e6e1ac9b7c558b5bf -r7e5847c20d3ca698e55690d8abb6d3f9aaffd313 --- Ringtoets/Common/test/Ringtoets.Common.Service.Test/DesignWaterLevelCalculationActivityTest.cs (.../DesignWaterLevelCalculationActivityTest.cs) (revision cc39748cdc122bfcc9bfb27e6e1ac9b7c558b5bf) +++ Ringtoets/Common/test/Ringtoets.Common.Service.Test/DesignWaterLevelCalculationActivityTest.cs (.../DesignWaterLevelCalculationActivityTest.cs) (revision 7e5847c20d3ca698e55690d8abb6d3f9aaffd313) @@ -222,14 +222,13 @@ } [Test] - public void Run_HydraulicLocationNonNaNDesignWaterLevel_ValidationAndCalculationNotPerformedAndStateSkipped() + public void Run_HydraulicLocationDesignWaterLevelSet_ValidationAndCalculationNotPerformedAndStateSkipped() { // Setup string validFilePath = Path.Combine(testDataPath, validFile); const string locationName = "locationName"; const string activityName = "GetActivityName"; - var calculationMessageProviderMock = mockRepository.Stub(); calculationMessageProviderMock.Stub(calc => calc.GetActivityName(locationName)).Return(activityName); calculationMessageProviderMock.Stub(calc => calc.GetCalculationName(locationName)).Return(activityName); @@ -250,7 +249,7 @@ Action call = () => activity.Run(); // Assert - TestHelper.AssertLogMessagesCount(call, 2); + TestHelper.AssertLogMessagesCount(call, 0); Assert.AreEqual(ActivityState.Skipped, activity.State); mockRepository.VerifyAll(); }