Index: Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Create/AssessmentSectionCreateExtensionsTest.cs =================================================================== diff -u -rfde2f5bd7dfb9f60e298ecf2afe9623dd540e16c -rc0c56c5249d2f49339aec934993501d1430bfd11 --- Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Create/AssessmentSectionCreateExtensionsTest.cs (.../AssessmentSectionCreateExtensionsTest.cs) (revision fde2f5bd7dfb9f60e298ecf2afe9623dd540e16c) +++ Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Create/AssessmentSectionCreateExtensionsTest.cs (.../AssessmentSectionCreateExtensionsTest.cs) (revision c0c56c5249d2f49339aec934993501d1430bfd11) @@ -130,15 +130,15 @@ Assert.IsNull(entity.ReferenceLinePointXml); Assert.AreEqual(1, entity.BackgroundDataEntities.Count); - BackgroundDataEntity backgroundMapDataEntity = entity.BackgroundDataEntities.Single(); - Assert.IsNotNull(backgroundMapDataEntity); - Assert.AreEqual(mapDataName, backgroundMapDataEntity.Name); - Assert.AreEqual(transparency, backgroundMapDataEntity.Transparency); - Assert.AreEqual(Convert.ToByte(isVisible), backgroundMapDataEntity.IsVisible); - Assert.AreEqual(Convert.ToByte(backgroundType), backgroundMapDataEntity.BackgroundDataType); + BackgroundDataEntity backgroundDataEntity = entity.BackgroundDataEntities.Single(); + Assert.IsNotNull(backgroundDataEntity); + Assert.AreEqual(mapDataName, backgroundDataEntity.Name); + Assert.AreEqual(transparency, backgroundDataEntity.Transparency); + Assert.AreEqual(Convert.ToByte(isVisible), backgroundDataEntity.IsVisible); + Assert.AreEqual(Convert.ToByte(backgroundType), backgroundDataEntity.BackgroundDataType); - Assert.AreEqual(1, backgroundMapDataEntity.BackgroundDataMetaEntities.Count); - BackgroundDataMetaEntity isConfiguredMetaEntity = backgroundMapDataEntity.BackgroundDataMetaEntities.First(); + Assert.AreEqual(1, backgroundDataEntity.BackgroundDataMetaEntities.Count); + BackgroundDataMetaEntity isConfiguredMetaEntity = backgroundDataEntity.BackgroundDataMetaEntities.First(); Assert.AreEqual("IsConfigured", isConfiguredMetaEntity.Key); Assert.AreEqual("0", isConfiguredMetaEntity.Value); }