Index: DamEngine/trunk/src/Deltares.DamEngine.IntegrationTests/IntegrationTests/DebuggingTest.cs =================================================================== diff -u -r4540 -r4624 --- DamEngine/trunk/src/Deltares.DamEngine.IntegrationTests/IntegrationTests/DebuggingTest.cs (.../DebuggingTest.cs) (revision 4540) +++ DamEngine/trunk/src/Deltares.DamEngine.IntegrationTests/IntegrationTests/DebuggingTest.cs (.../DebuggingTest.cs) (revision 4624) @@ -52,7 +52,7 @@ var engineInterface = new EngineInterface(inputString); GeneralHelper.RunAfterInputValidation(engineInterface, true, outputName); int errorCount = GeneralHelper.DetermineNumberOfCalculationErrors(engineInterface.DamProjectData.CalculationMessages); - Assert.AreEqual(0, errorCount, "There should be nor errors during the calculation."); + Assert.That(errorCount, Is.EqualTo(0), "There should be nor errors during the calculation."); } [Test, Ignore("This test is only used for debugging XML files generated by Dam UI")] @@ -70,6 +70,6 @@ GeneralHelper.RunAfterInputValidation(engineInterface, true, outputName); int errorCount = GeneralHelper.DetermineNumberOfCalculationErrors(engineInterface.DamProjectData.CalculationMessages); - Assert.AreEqual(0, errorCount, "There should be nor errors during the calculation."); + Assert.That(errorCount, Is.EqualTo(0), "There should be nor errors during the calculation."); } } \ No newline at end of file