Index: Core/Components/src/Core.Components.Gis.IO/Readers/WmtsConnectionInfoReader.cs =================================================================== diff -u -r773c8bead12417f353dc62c006f93fee5a68d06e -r2db5ccc1fb164fc6f43733359a0e745ec6891edd --- Core/Components/src/Core.Components.Gis.IO/Readers/WmtsConnectionInfoReader.cs (.../WmtsConnectionInfoReader.cs) (revision 773c8bead12417f353dc62c006f93fee5a68d06e) +++ Core/Components/src/Core.Components.Gis.IO/Readers/WmtsConnectionInfoReader.cs (.../WmtsConnectionInfoReader.cs) (revision 2db5ccc1fb164fc6f43733359a0e745ec6891edd) @@ -87,8 +87,6 @@ /// Reads the default WMTS Connection info objects. /// /// The read information. - /// Thrown when an error occurred while parsing the XML. - /// Thrown when an error occurred while reading the XML. public ReadOnlyCollection ReadDefaultWmtsConnectionInfos() { using (XmlReader reader = XmlReader.Create(new StringReader(Resources.defaultWmtsConnectionInfo))) @@ -103,6 +101,7 @@ /// /// The read collection. /// Thrown when an error occurred while parsing the XML. + /// Thrown when an error occurred while reading the XML. private IEnumerable ReadWmtsConnectionInfos() { using (XmlReader reader = XmlReader.Create(filePath)) Index: Core/Components/test/Core.Components.Gis.Forms.Test/Views/WmtsLocationControlTest.cs =================================================================== diff -u -r773c8bead12417f353dc62c006f93fee5a68d06e -r2db5ccc1fb164fc6f43733359a0e745ec6891edd --- Core/Components/test/Core.Components.Gis.Forms.Test/Views/WmtsLocationControlTest.cs (.../WmtsLocationControlTest.cs) (revision 773c8bead12417f353dc62c006f93fee5a68d06e) +++ Core/Components/test/Core.Components.Gis.Forms.Test/Views/WmtsLocationControlTest.cs (.../WmtsLocationControlTest.cs) (revision 2db5ccc1fb164fc6f43733359a0e745ec6891edd) @@ -146,25 +146,25 @@ form.Controls.Add(control); // Assert - var urlLocationLabel = new LabelTester("urlLocationLabel", form); + Label urlLocationLabel = form.Controls.Find("urlLocationLabel", true).OfType