Index: Ringtoets/Piping/test/Ringtoets.Piping.IO.Test/PipingSurfaceLinesCsvReaderTest.cs =================================================================== diff -u -r7caaadff2fc6cb1b4b3936401a4c6281e120496d -rc1e31ab57c197658d1c75750feef8856df7e9f6b --- Ringtoets/Piping/test/Ringtoets.Piping.IO.Test/PipingSurfaceLinesCsvReaderTest.cs (.../PipingSurfaceLinesCsvReaderTest.cs) (revision 7caaadff2fc6cb1b4b3936401a4c6281e120496d) +++ Ringtoets/Piping/test/Ringtoets.Piping.IO.Test/PipingSurfaceLinesCsvReaderTest.cs (.../PipingSurfaceLinesCsvReaderTest.cs) (revision c1e31ab57c197658d1c75750feef8856df7e9f6b) @@ -47,7 +47,7 @@ // Assert var exception = Assert.Throws(call); - var expectedMessage = String.Format(IOResources.Error_Path_cannot_contain_characters_0_, + var expectedMessage = String.Format(IOResources.Error_Path_cannot_contain_Characters_0_, String.Join(", ", Path.GetInvalidFileNameChars())); Assert.AreEqual(expectedMessage, exception.Message); } @@ -147,7 +147,7 @@ // Assert var exception = Assert.Throws(call); - var expectedMessage = string.Format(IOResources.Error_Directory_in_path_0_missing, path); + var expectedMessage = string.Format(IOResources.Error_Directory_in_Path_0_missing, path); Assert.AreEqual(expectedMessage, exception.Message); Assert.IsInstanceOf(exception.InnerException); } @@ -325,7 +325,7 @@ // Assert var exception = Assert.Throws(call); - var expectedMessage = string.Format(IOResources.Error_Directory_in_path_0_missing, path); + var expectedMessage = string.Format(IOResources.Error_Directory_in_Path_0_missing, path); Assert.AreEqual(expectedMessage, exception.Message); Assert.IsInstanceOf(exception.InnerException); }