Index: Ringtoets/Piping/test/Ringtoets.Piping.IO.Test/SoilProfile/SoilProfile2DReaderTest.cs =================================================================== diff -u -r98fc85d8cecf9edae9fe7c1f2f47b60ecda5e187 -rd2a52a4a27bba0bcf0437e905fe3985484c0219c --- Ringtoets/Piping/test/Ringtoets.Piping.IO.Test/SoilProfile/SoilProfile2DReaderTest.cs (.../SoilProfile2DReaderTest.cs) (revision 98fc85d8cecf9edae9fe7c1f2f47b60ecda5e187) +++ Ringtoets/Piping/test/Ringtoets.Piping.IO.Test/SoilProfile/SoilProfile2DReaderTest.cs (.../SoilProfile2DReaderTest.cs) (revision d2a52a4a27bba0bcf0437e905fe3985484c0219c) @@ -77,7 +77,7 @@ // Assert var exception = Assert.Throws(test); - var expectedMessage = GetExpectedSoilProfileReaderErrorMessage(path, name, "Ondergrondschematisering bevat geen geldige waarde in kolom 'IntersectionX'."); + var expectedMessage = GetExpectedSoilProfileReaderErrorMessage(path, name, "Ondergrondschematisatie bevat geen geldige waarde in kolom 'IntersectionX'."); Assert.AreEqual(expectedMessage, exception.Message); mocks.VerifyAll(); @@ -195,7 +195,7 @@ // Assert var exception = Assert.Throws(test); - var expectedMessage = GetExpectedSoilProfileReaderErrorMessage(path, name, "Ondergrondschematisering bevat geen geldige waarde in kolom 'IsAquifer'."); + var expectedMessage = GetExpectedSoilProfileReaderErrorMessage(path, name, "Ondergrondschematisatie bevat geen geldige waarde in kolom 'IsAquifer'."); Assert.AreEqual(expectedMessage, exception.Message); mocks.VerifyAll(); @@ -276,7 +276,7 @@ private static string GetExpectedSoilProfileReaderErrorMessage(string path, string name, string errorMessage) { return new FileReaderErrorMessageBuilder(path) - .WithSubject(string.Format("ondergrondschematisering '{0}'", name)) + .WithSubject(string.Format("ondergrondschematisatie '{0}'", name)) .Build(errorMessage); } }