Index: Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Forms.Test/TreeNodeInfos/HeightStructuresInputContextTreeNodeInfoTest.cs =================================================================== diff -u -r98929f84fbf311bd19d8e61cc8499cdb40b22ea0 -r6b6f344a9cf3e6c44b63320dfa3f5c828c4221d8 --- Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Forms.Test/TreeNodeInfos/HeightStructuresInputContextTreeNodeInfoTest.cs (.../HeightStructuresInputContextTreeNodeInfoTest.cs) (revision 98929f84fbf311bd19d8e61cc8499cdb40b22ea0) +++ Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Forms.Test/TreeNodeInfos/HeightStructuresInputContextTreeNodeInfoTest.cs (.../HeightStructuresInputContextTreeNodeInfoTest.cs) (revision 6b6f344a9cf3e6c44b63320dfa3f5c828c4221d8) @@ -88,13 +88,13 @@ public void Text_Always_ReturnsTextFromResource() { // Setup - var assessmentSectionMock = mocksRepository.Stub(); + var assessmentSectionStub = mocksRepository.Stub(); mocksRepository.ReplayAll(); var heightStructuresInputContext = new HeightStructuresInputContext( new HeightStructuresInput(), new HeightStructuresFailureMechanism(), - assessmentSectionMock); + assessmentSectionStub); // Call var text = info.Text(heightStructuresInputContext); @@ -107,13 +107,13 @@ public void Image_Always_ReturnsSetImage() { // Setup - var assessmentSectionMock = mocksRepository.Stub(); + var assessmentSectionStub = mocksRepository.Stub(); mocksRepository.ReplayAll(); var heightStructuresInputContext = new HeightStructuresInputContext( new HeightStructuresInput(), new HeightStructuresFailureMechanism(), - assessmentSectionMock); + assessmentSectionStub); // Call var image = info.Image(heightStructuresInputContext);