Index: Ringtoets/ClosingStructures/test/Ringtoets.ClosingStructures.Service.Test/ClosingStructuresCalculationServiceTest.cs =================================================================== diff -u -rc308077fce571dad955fafc21577c2a99dc5b221 -r36b96f02b3c5983419db8ca336a5ff00d9e7fdda --- Ringtoets/ClosingStructures/test/Ringtoets.ClosingStructures.Service.Test/ClosingStructuresCalculationServiceTest.cs (.../ClosingStructuresCalculationServiceTest.cs) (revision c308077fce571dad955fafc21577c2a99dc5b221) +++ Ringtoets/ClosingStructures/test/Ringtoets.ClosingStructures.Service.Test/ClosingStructuresCalculationServiceTest.cs (.../ClosingStructuresCalculationServiceTest.cs) (revision 36b96f02b3c5983419db8ca336a5ff00d9e7fdda) @@ -20,6 +20,7 @@ // All rights reserved. using System; +using System.ComponentModel; using System.IO; using System.Linq; using Core.Common.Base.Geometry; @@ -170,8 +171,8 @@ // Assert Assert.AreEqual(0, calculationInputs.Length); - var exception = Assert.Throws(call); - Assert.AreEqual("ClosingStructureInflowModelType", exception.Message); + var exception = Assert.Throws(call); + Assert.AreEqual("calculation", exception.ParamName); } mockRepository.VerifyAll(); }