Index: Core/Components/test/Core.Components.DotSpatial.Forms.Test/WmtsBackgroundLayerStatusTest.cs =================================================================== diff -u -r33e1dc3abb1cd68916fe1b6ee9ac7c6a9edc7d07 -r091965436d8fb0159224f7459816f3955bcb243d --- Core/Components/test/Core.Components.DotSpatial.Forms.Test/WmtsBackgroundLayerStatusTest.cs (.../WmtsBackgroundLayerStatusTest.cs) (revision 33e1dc3abb1cd68916fe1b6ee9ac7c6a9edc7d07) +++ Core/Components/test/Core.Components.DotSpatial.Forms.Test/WmtsBackgroundLayerStatusTest.cs (.../WmtsBackgroundLayerStatusTest.cs) (revision 091965436d8fb0159224f7459816f3955bcb243d) @@ -39,18 +39,18 @@ get { yield return new TestCaseData(new WmtsMapData("case 1", - "https://service.pdok.nl/brt/achtergrondkaart/wmts/v2_0?request=getcapabilities&service=wmts", - "standaard(EPSG:28992)", + "https://geodata.nationaalgeoregister.nl/wmts/top10nlv1?VERSION=1.1.0&request=GetCapabilities", + "brtachtergrondkaart(EPSG:28992)", "image/png")) .SetName("HasSameConfiguration_ForCase1_ReturnFalse"); yield return new TestCaseData(new WmtsMapData("case 2", - "https://service.pdok.nl/brt/achtergrondkaart/wmts/v2_0?request=getcapabilities&service=wmts", - "standaard(EPSG:25831)", + "https://geodata.nationaalgeoregister.nl/wmts/top10nlv1?VERSION=1.1.0&request=GetCapabilities", + "brtachtergrondkaart(EPSG:12345)", "image/png")) .SetName("HasSameConfiguration_ForCase2_ReturnFalse"); yield return new TestCaseData(new WmtsMapData("case 3", - "https://service.pdok.nl/brt/achtergrondkaart/wmts/v2_0?request=getcapabilities&service=wmts", - "standaard(EPSG:28992)", + "https://geodata.nationaalgeoregister.nl/wmts/top10nlv1?VERSION=1.1.0&request=GetCapabilities", + "brtachtergrondkaart(EPSG:28992)", "image/jpeg")) .SetName("HasSameConfiguration_ForCase3_ReturnFalse"); } Index: Core/Components/test/Core.Components.Gis.Test/Data/WmtsMapDataTest.cs =================================================================== diff -u -r33e1dc3abb1cd68916fe1b6ee9ac7c6a9edc7d07 -r091965436d8fb0159224f7459816f3955bcb243d --- Core/Components/test/Core.Components.Gis.Test/Data/WmtsMapDataTest.cs (.../WmtsMapDataTest.cs) (revision 33e1dc3abb1cd68916fe1b6ee9ac7c6a9edc7d07) +++ Core/Components/test/Core.Components.Gis.Test/Data/WmtsMapDataTest.cs (.../WmtsMapDataTest.cs) (revision 091965436d8fb0159224f7459816f3955bcb243d) @@ -30,8 +30,8 @@ [TestFixture] public class WmtsMapDataTest { - private const string url = "https://service.pdok.nl/brt/achtergrondkaart/wmts/v2_0?request=getcapabilities&service=wmts"; - private const string capabilityIdentifier = "standaard"; + private const string url = "https://geodata.nationaalgeoregister.nl/wmts/top10nlv2?VERSION=1.0.0&request=GetCapabilities"; + private const string capabilityIdentifier = "brtachtergrondkaart"; private const string imageFormat = "image/png"; [Test]