Index: Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Forms.Test/PresentationObjects/HeightStructuresContextTest.cs =================================================================== diff -u -re46bec50706f5ea1a7754bbaebfc892745d8604a -r20e9bfea15dfe132ee137283a9f24bc4c413ce4a --- Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Forms.Test/PresentationObjects/HeightStructuresContextTest.cs (.../HeightStructuresContextTest.cs) (revision e46bec50706f5ea1a7754bbaebfc892745d8604a) +++ Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Forms.Test/PresentationObjects/HeightStructuresContextTest.cs (.../HeightStructuresContextTest.cs) (revision 20e9bfea15dfe132ee137283a9f24bc4c413ce4a) @@ -45,13 +45,13 @@ var failureMechanism = new HeightStructuresFailureMechanism(); // Call - var context = new HeightStructuresContext(failureMechanism.HeightStructuresCollection, + var context = new HeightStructuresContext(failureMechanism.HeightStructures, failureMechanism, assessmentSectionStub); // Assert Assert.IsInstanceOf>>(context); Assert.AreSame(failureMechanism, context.FailureMechanism); - Assert.AreSame(failureMechanism.HeightStructuresCollection, context.WrappedData); + Assert.AreSame(failureMechanism.HeightStructures, context.WrappedData); Assert.AreSame(assessmentSectionStub, context.AssessmentSection); mocks.VerifyAll(); } @@ -82,7 +82,7 @@ var failureMechanism = new HeightStructuresFailureMechanism(); // Call - TestDelegate test = () => new HeightStructuresContext(failureMechanism.HeightStructuresCollection, + TestDelegate test = () => new HeightStructuresContext(failureMechanism.HeightStructures, failureMechanism, null); // Assert