Index: Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/WmtsConnectionInfoReaderTest.cs =================================================================== diff -u -r4f2d8bc47cb1935643c427e0d3bd69a06bddaa7c -r995becdffe0f118fd5d6167196ade69a4b650622 --- Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/WmtsConnectionInfoReaderTest.cs (.../WmtsConnectionInfoReaderTest.cs) (revision 4f2d8bc47cb1935643c427e0d3bd69a06bddaa7c) +++ Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/WmtsConnectionInfoReaderTest.cs (.../WmtsConnectionInfoReaderTest.cs) (revision 995becdffe0f118fd5d6167196ade69a4b650622) @@ -187,14 +187,12 @@ Action action = () => { readConnectionInfos = reader.ReadWmtsConnectionInfos(filePath).ToArray(); }; // Assert - string expectedMessage = $"Fout bij het lezen van bestand '{filePath}' waarbij Naam='First name' " - + "en URL='': het is niet mogelijk om een WMTS connectie aan te maken."; + string expectedMessage = $"Fout bij het lezen van bestand '{filePath}': het is niet mogelijk om WMTS connectie First name aan te maken met URL ''."; TestHelper.AssertLogMessageWithLevelIsGenerated(action, Tuple.Create(expectedMessage, LogLevelConstant.Warn)); Assert.IsNotNull(readConnectionInfos); Assert.AreEqual(1, readConnectionInfos.Length); - var expectedWmtsConnectionInfo = new WmtsConnectionInfo(@"second name", - @"https://domain.com"); + var expectedWmtsConnectionInfo = new WmtsConnectionInfo(@"second name", @"https://domain.com"); AssertAreEqual(expectedWmtsConnectionInfo, readConnectionInfos[0]); }