Index: DamEngine/trunk/src/Deltares.DamEngine.IntegrationTests/IntegrationTests/DesignCalculatorTests.cs =================================================================== diff -u -r3545 -r3560 --- DamEngine/trunk/src/Deltares.DamEngine.IntegrationTests/IntegrationTests/DesignCalculatorTests.cs (.../DesignCalculatorTests.cs) (revision 3545) +++ DamEngine/trunk/src/Deltares.DamEngine.IntegrationTests/IntegrationTests/DesignCalculatorTests.cs (.../DesignCalculatorTests.cs) (revision 3560) @@ -99,9 +99,9 @@ Assert.IsNotNull(engineInterface.DamProjectData); string outputString = engineInterface.Run(); var output = DamXmlSerialization.LoadOutputFromXmlString(outputString); - // We get 606 warnings in total when using the official release of the macro stability kernel. When we use the latest trunk version, we only get 586 errors + // We get 606 warnings in total when using the official release of the macro stability kernel. When we use the latest trunk version, we get 619 errors // So as long as the latest version is not (yet) released we have to check both values because otherwise it will either fail locally or on TC. - Assert.IsTrue(596 == output.Results.CalculationMessages.Length || 616 == output.Results.CalculationMessages.Length); + Assert.IsTrue(596 == output.Results.CalculationMessages.Length || 616 == output.Results.CalculationMessages.Length, "Number of messages found = "+ output.Results.CalculationMessages.Length.ToString()) ; } }