Index: Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Create/BackgroundDataCreateExtensionsTest.cs =================================================================== diff -u -r7f540fc512a6c291d69612b1d0b9241d42288aef -rfa68b38773452b965a9ee25db20436446c1a50b8 --- Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Create/BackgroundDataCreateExtensionsTest.cs (.../BackgroundDataCreateExtensionsTest.cs) (revision 7f540fc512a6c291d69612b1d0b9241d42288aef) +++ Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Create/BackgroundDataCreateExtensionsTest.cs (.../BackgroundDataCreateExtensionsTest.cs) (revision fa68b38773452b965a9ee25db20436446c1a50b8) @@ -26,7 +26,6 @@ using Application.Ringtoets.Storage.DbContext; using Core.Common.Base.Data; using Core.Common.TestUtil; -using Core.Components.Gis.Data; using NUnit.Framework; using Ringtoets.Common.Data.AssessmentSection; @@ -108,12 +107,12 @@ { // Setup var random = new Random(21); - var wellKnownTileSource = random.NextEnumValue(); + var wellKnownTileSource = random.NextEnumValue(); const string name = "background"; const bool isVisible = true; const BackgroundMapDataType backgroundDataType = BackgroundMapDataType.WellKnown; - RoundedDouble transparancy = (RoundedDouble)0.3; + RoundedDouble transparancy = (RoundedDouble) 0.3; var configuration = new WellKnownBackgroundDataConfiguration(wellKnownTileSource); var backgroundData = new BackgroundData(configuration) @@ -135,13 +134,12 @@ var expectedKeyValuePairs = new Dictionary { { - BackgroundDataIdentifiers.WellKnownTileSource, ((int)wellKnownTileSource).ToString() + BackgroundDataIdentifiers.WellKnownTileSource, ((int) wellKnownTileSource).ToString() } }; var actualKeyValuePairs = entity.BackgroundDataMetaEntities.Select( metaEntity => new KeyValuePair(metaEntity.Key, metaEntity.Value)); CollectionAssert.AreEquivalent(expectedKeyValuePairs, actualKeyValuePairs); } - } } \ No newline at end of file