Index: Application/Ringtoets/test/Application.Ringtoets.Storage.TestUtil.Test/MacroStabilityInwardsSoilLayerTwoDEntityTestFactoryTest.cs =================================================================== diff -u -r88db4d493b026e3f5bb083d1bb33bc607ff0d63e -r1c2f91dd3d03b28ce5e493b068bc34ca4dfc9db7 --- Application/Ringtoets/test/Application.Ringtoets.Storage.TestUtil.Test/MacroStabilityInwardsSoilLayerTwoDEntityTestFactoryTest.cs (.../MacroStabilityInwardsSoilLayerTwoDEntityTestFactoryTest.cs) (revision 88db4d493b026e3f5bb083d1bb33bc607ff0d63e) +++ Application/Ringtoets/test/Application.Ringtoets.Storage.TestUtil.Test/MacroStabilityInwardsSoilLayerTwoDEntityTestFactoryTest.cs (.../MacroStabilityInwardsSoilLayerTwoDEntityTestFactoryTest.cs) (revision 1c2f91dd3d03b28ce5e493b068bc34ca4dfc9db7) @@ -37,10 +37,10 @@ MacroStabilityInwardsSoilLayerTwoDEntity entity = MacroStabilityInwardsSoilLayerTwoDEntityTestFactory.CreateMacroStabilityInwardsSoilLayerTwoDEntity(); // Assert - Point2D[] outerRing = new Point2DXmlSerializer().FromXml(entity.OuterRingXml); + Point2D[] outerRing = new Point2DCollectionXmlSerializer().FromXml(entity.OuterRingXml); Assert.AreEqual(2, outerRing.Length); - Ring[] holes = new RingXmlSerializer().FromXml(entity.HolesXml); + Ring[] holes = new RingCollectionXmlSerializer().FromXml(entity.HolesXml); Assert.AreEqual(0, holes.Length); } }