Index: Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Forms.Test/PresentationObjects/HeightStructuresContextTest.cs =================================================================== diff -u -rbc9af05d3eb0d40e5620b96f537ed92f3ae52e94 -r8c1fffbb415e7c2470be6d3fa2971103777d418e --- Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Forms.Test/PresentationObjects/HeightStructuresContextTest.cs (.../HeightStructuresContextTest.cs) (revision bc9af05d3eb0d40e5620b96f537ed92f3ae52e94) +++ Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Forms.Test/PresentationObjects/HeightStructuresContextTest.cs (.../HeightStructuresContextTest.cs) (revision 8c1fffbb415e7c2470be6d3fa2971103777d418e) @@ -38,19 +38,19 @@ { // Setup var mocks = new MockRepository(); - var assessmentSectionMock = mocks.Stub(); + var assessmentSectionStub = mocks.Stub(); mocks.ReplayAll(); var failureMechanism = new HeightStructuresFailureMechanism(); // Call - var context = new HeightStructuresContext(failureMechanism.HeightStructures, failureMechanism, assessmentSectionMock); + var context = new HeightStructuresContext(failureMechanism.HeightStructures, failureMechanism, assessmentSectionStub); // Assert Assert.IsInstanceOf>>(context); Assert.AreSame(failureMechanism, context.FailureMechanism); Assert.AreSame(failureMechanism.HeightStructures, context.WrappedData); - Assert.AreSame(assessmentSectionMock, context.AssessmentSection); + Assert.AreSame(assessmentSectionStub, context.AssessmentSection); mocks.VerifyAll(); }