Index: Ringtoets/Common/test/Ringtoets.Common.Forms.Test/Views/FailureMechanismViewTest.cs =================================================================== diff -u -r2a81f01756e227d5ce93717b21b87e8a5cd5fcbb -re051fc6fb26bb69bd092c5da9a7686fbb2fb0736 --- Ringtoets/Common/test/Ringtoets.Common.Forms.Test/Views/FailureMechanismViewTest.cs (.../FailureMechanismViewTest.cs) (revision 2a81f01756e227d5ce93717b21b87e8a5cd5fcbb) +++ Ringtoets/Common/test/Ringtoets.Common.Forms.Test/Views/FailureMechanismViewTest.cs (.../FailureMechanismViewTest.cs) (revision e051fc6fb26bb69bd092c5da9a7686fbb2fb0736) @@ -338,7 +338,7 @@ public void UpdateObserver_DataUpdated_MapLayersSameOrder() { // Setup - const int updatedRefenceLineLayerIndex = referenceLineIndex + 4; + const int updatedReferenceLineLayerIndex = referenceLineIndex + 4; const int updatedSectionsLayerIndex = sectionsIndex - 1; const int updateSectionStartLayerIndex = sectionsStartPointIndex - 1; const int updatedSectionEndLayerIndex = sectionsEndPointIndex - 1; @@ -360,7 +360,7 @@ List mapDataList = mapData.Collection.ToList(); // Precondition - var referenceLineData = (MapLineData) mapDataList[updatedRefenceLineLayerIndex]; + var referenceLineData = (MapLineData) mapDataList[updatedReferenceLineLayerIndex]; Assert.AreEqual("Referentielijn", referenceLineData.Name); var sectionsData = (MapLineData) mapDataList[updatedSectionsLayerIndex]; @@ -388,7 +388,7 @@ assessmentSection.NotifyObservers(); // Assert - var actualReferenceLineData = (MapLineData) mapDataList[updatedRefenceLineLayerIndex]; + var actualReferenceLineData = (MapLineData) mapDataList[updatedReferenceLineLayerIndex]; Assert.AreEqual("Referentielijn", actualReferenceLineData.Name); var actualSectionsData = (MapLineData) mapDataList[updatedSectionsLayerIndex];