Index: DamEngine/trunk/src/Deltares.DamEngine.Calculators.Tests/KernelWrappers/MacroStabilityInwards/MacroStabilityInwardsKernelWrapperTests.cs =================================================================== diff -u -r3081 -r3082 --- DamEngine/trunk/src/Deltares.DamEngine.Calculators.Tests/KernelWrappers/MacroStabilityInwards/MacroStabilityInwardsKernelWrapperTests.cs (.../MacroStabilityInwardsKernelWrapperTests.cs) (revision 3081) +++ DamEngine/trunk/src/Deltares.DamEngine.Calculators.Tests/KernelWrappers/MacroStabilityInwards/MacroStabilityInwardsKernelWrapperTests.cs (.../MacroStabilityInwardsKernelWrapperTests.cs) (revision 3082) @@ -162,7 +162,6 @@ } [Test] - [Category(Categories.WorkInProgress)] // Check validation of grid public void TestFullCalculationFailsWithNoGrid() { var kernelWrapper = new MacroStabilityInwardsKernelWrapper(); @@ -182,9 +181,9 @@ // Run the dl; the grid position is defined i such a way that no valid circles can be found during calculation so this should fail. kernelWrapper.Execute(kernelDataInput, kernelDataOutput, out messages); MacroStabilityOutput macroStabilityOutput = (MacroStabilityOutput)kernelDataOutput; - Assert.AreEqual(649, messages.Count); + Assert.AreEqual(149, messages.Count); Assert.AreEqual(CalculationResult.RunFailed, macroStabilityOutput.CalculationResult); - Assert.AreEqual("The kernel was not able to determine valid slip circles or slip planes.", messages[648].Message); + Assert.AreEqual("The kernel was not able to determine valid slip circles or slip planes.", messages[148].Message); } [Test]