Index: Ringtoets/StabilityStoneCover/test/Ringtoets.StabilityStoneCover.Data.Test/StabilityStoneCoverFailureMechanismSectionResultAssemblyFactoryTest.cs =================================================================== diff -u -re903fc0fcf884defda3849c2686dc0c2b9b71ddb -rdeeb111cd648c41702c810d6b4f13ecc67098ccb --- Ringtoets/StabilityStoneCover/test/Ringtoets.StabilityStoneCover.Data.Test/StabilityStoneCoverFailureMechanismSectionResultAssemblyFactoryTest.cs (.../StabilityStoneCoverFailureMechanismSectionResultAssemblyFactoryTest.cs) (revision e903fc0fcf884defda3849c2686dc0c2b9b71ddb) +++ Ringtoets/StabilityStoneCover/test/Ringtoets.StabilityStoneCover.Data.Test/StabilityStoneCoverFailureMechanismSectionResultAssemblyFactoryTest.cs (.../StabilityStoneCoverFailureMechanismSectionResultAssemblyFactoryTest.cs) (revision deeb111cd648c41702c810d6b4f13ecc67098ccb) @@ -95,7 +95,7 @@ } [Test] - public void AssembleSimpleAssessment_CalculatorThrowsExceptions_ThrowsAssemblyFactoryException() + public void AssembleSimpleAssessment_CalculatorThrowsExceptions_ThrowsAssemblyException() { // Setup FailureMechanismSection failureMechanismSection = FailureMechanismSectionTestFactory.CreateFailureMechanismSection(); @@ -111,7 +111,7 @@ TestDelegate call = () => StabilityStoneCoverFailureMechanismSectionAssemblyFactory.AssembleSimpleAssessment(sectionResult); // Assert - var exception = Assert.Throws(call); + var exception = Assert.Throws(call); Exception innerException = exception.InnerException; Assert.IsInstanceOf(innerException); Assert.AreEqual(innerException.Message, exception.Message);