Index: DamEngine/trunk/src/Deltares.DamEngine.IntegrationTests/IntegrationTests/DesignCalculatorTests.cs =================================================================== diff -u -r3512 -r3517 --- DamEngine/trunk/src/Deltares.DamEngine.IntegrationTests/IntegrationTests/DesignCalculatorTests.cs (.../DesignCalculatorTests.cs) (revision 3512) +++ DamEngine/trunk/src/Deltares.DamEngine.IntegrationTests/IntegrationTests/DesignCalculatorTests.cs (.../DesignCalculatorTests.cs) (revision 3517) @@ -66,7 +66,7 @@ Assert.AreEqual(1, output.Results.CalculationMessages.Length); Assert.IsTrue(output.Results.CalculationMessages[0].Message1.Contains("Gekozen rekenkernel is nog niet beschikbaar"), output.Results.CalculationMessages[0].Message1); } - [Test, Ignore] + [Test] [SetUICulture("nl-NL")] public void TestValidInputXML() { @@ -79,9 +79,9 @@ 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 - // So as long as the latest version is not (yet) released we have to ignore this test because it will either fail locally or on TC. - Assert.AreEqual(606, output.Results.CalculationMessages.Length); - + // 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(586 == output.Results.CalculationMessages.Length || 606 == output.Results.CalculationMessages.Length); + } }