Index: Ringtoets/GrassCoverErosionInwards/test/Ringtoets.GrassCoverErosionInwards.IO.Test/DikeProfiles/DikeProfileLocationTest.cs =================================================================== diff -u -r68588fbca4cc848bf72e39ec16940ce96c596bde -re2b7cf253e2e106ce8b8647e405b883c0c768c18 --- Ringtoets/GrassCoverErosionInwards/test/Ringtoets.GrassCoverErosionInwards.IO.Test/DikeProfiles/DikeProfileLocationTest.cs (.../DikeProfileLocationTest.cs) (revision 68588fbca4cc848bf72e39ec16940ce96c596bde) +++ Ringtoets/GrassCoverErosionInwards/test/Ringtoets.GrassCoverErosionInwards.IO.Test/DikeProfiles/DikeProfileLocationTest.cs (.../DikeProfileLocationTest.cs) (revision e2b7cf253e2e106ce8b8647e405b883c0c768c18) @@ -67,7 +67,7 @@ TestDelegate call = () => new DikeProfileLocation(null, "aNAME", 1.1, referencePoint); // Assert - var expectedMessage = "De locatie parameter 'Id' heeft geen waarde."; + var expectedMessage = "De locatie parameter 'ID' heeft geen waarde."; string message = Assert.Throws(call).Message; Assert.AreEqual(expectedMessage, message); } @@ -98,7 +98,7 @@ TestDelegate call = () => new DikeProfileLocation(id, "aNAME", 1.1, referencePoint); // Assert - var expectedMessage = "De locatie parameter 'Id' mag uitsluitend uit letters en cijfers bestaan."; + var expectedMessage = "De locatie parameter 'ID' mag uitsluitend uit letters en cijfers bestaan."; string message = Assert.Throws(call).Message; Assert.AreEqual(expectedMessage, message); }