Index: Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Forms.Test/PresentationObjects/HeightStructuresContextTest.cs =================================================================== diff -u -rcda0b786ef4c81469fb4213e7fc82cb74493fcf9 -rf7a5d22408a43c70b20a9eb5ee79cb336bacdf9e --- Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Forms.Test/PresentationObjects/HeightStructuresContextTest.cs (.../HeightStructuresContextTest.cs) (revision cda0b786ef4c81469fb4213e7fc82cb74493fcf9) +++ Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Forms.Test/PresentationObjects/HeightStructuresContextTest.cs (.../HeightStructuresContextTest.cs) (revision f7a5d22408a43c70b20a9eb5ee79cb336bacdf9e) @@ -38,20 +38,20 @@ { // Setup var mocks = new MockRepository(); - var assessmentSectionStub = mocks.Stub(); + var assessmentSection = mocks.Stub(); mocks.ReplayAll(); var failureMechanism = new HeightStructuresFailureMechanism(); // Call var context = new HeightStructuresContext(failureMechanism.HeightStructures, - failureMechanism, assessmentSectionStub); + failureMechanism, assessmentSection); // Assert Assert.IsInstanceOf>>(context); Assert.AreSame(failureMechanism, context.FailureMechanism); Assert.AreSame(failureMechanism.HeightStructures, context.WrappedData); - Assert.AreSame(assessmentSectionStub, context.AssessmentSection); + Assert.AreSame(assessmentSection, context.AssessmentSection); mocks.VerifyAll(); }