Index: Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Read/AssessmentSectionEntityReadExtensionsTest.cs =================================================================== diff -u -ra4da96890c5eb0f73300e05256e3e56755334378 -r5e6c2c5507bd9f874b03c9a205fb6de69d69cf58 --- Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Read/AssessmentSectionEntityReadExtensionsTest.cs (.../AssessmentSectionEntityReadExtensionsTest.cs) (revision a4da96890c5eb0f73300e05256e3e56755334378) +++ Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Read/AssessmentSectionEntityReadExtensionsTest.cs (.../AssessmentSectionEntityReadExtensionsTest.cs) (revision 5e6c2c5507bd9f874b03c9a205fb6de69d69cf58) @@ -101,26 +101,14 @@ const double transparency = 0.0; bool isVisible = isConfigured; - const string sourceCapabilitiesUrl = "//url"; - const string selectedCapabilityName = "selected name"; - const string preferredFormat = "image/png"; - const BackgroundMapDataType backgroundMapDataType = BackgroundMapDataType.Wmts; + const string wellKnownTileSource = "1"; + const BackgroundMapDataType backgroundMapDataType = BackgroundMapDataType.WellKnown; var backgroundDataMetaEntities = new List { new BackgroundDataMetaEntity { - Key = BackgroundDataIdentifiers.SourceCapabilitiesUrl, - Value = sourceCapabilitiesUrl - }, - new BackgroundDataMetaEntity - { - Key = BackgroundDataIdentifiers.SelectedCapabilityIdentifier, - Value = selectedCapabilityName - }, - new BackgroundDataMetaEntity - { - Key = BackgroundDataIdentifiers.PreferredFormat, - Value = preferredFormat + Key = BackgroundDataIdentifiers.WellKnownTileSource, + Value = wellKnownTileSource } }; @@ -152,7 +140,7 @@ if (isConfigured) { - Assert.AreEqual(3, backgroundData.Parameters.Count); + Assert.AreEqual(1, backgroundData.Parameters.Count); var expectedKeyValuePairs = backgroundDataMetaEntities.Select(me => new KeyValuePair(me.Key, me.Value)); CollectionAssert.AreEquivalent(expectedKeyValuePairs, backgroundData.Parameters);