Index: Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Create/Piping/StochasticSoilProfileCreateExtensionsTest.cs =================================================================== diff -u -rb5e8e61b14bbdc9307a0eb69a27275bb929a2fdf -r2a210b0032d2a1ac4c4bdedaaf3aee426f717b4d --- Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Create/Piping/StochasticSoilProfileCreateExtensionsTest.cs (.../StochasticSoilProfileCreateExtensionsTest.cs) (revision b5e8e61b14bbdc9307a0eb69a27275bb929a2fdf) +++ Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Create/Piping/StochasticSoilProfileCreateExtensionsTest.cs (.../StochasticSoilProfileCreateExtensionsTest.cs) (revision 2a210b0032d2a1ac4c4bdedaaf3aee426f717b4d) @@ -23,7 +23,6 @@ using Application.Ringtoets.Storage.Create; using Application.Ringtoets.Storage.Create.Piping; using Application.Ringtoets.Storage.DbContext; -using Core.Common.TestUtil; using NUnit.Framework; using Ringtoets.Piping.Data; using Ringtoets.Piping.KernelWrapper.TestUtil; @@ -64,7 +63,7 @@ var registry = new PersistenceRegistry(); // Call - var entity = stochasticSoilProfile.Create(registry, order); + StochasticSoilProfileEntity entity = stochasticSoilProfile.Create(registry, order); // Assert Assert.IsNotNull(entity); @@ -89,8 +88,8 @@ var registry = new PersistenceRegistry(); // Call - var firstEntity = firstStochasticSoilProfile.Create(registry, 0); - var secondEntity = secondStochasticSoilProfile.Create(registry, 0); + StochasticSoilProfileEntity firstEntity = firstStochasticSoilProfile.Create(registry, 0); + StochasticSoilProfileEntity secondEntity = secondStochasticSoilProfile.Create(registry, 0); // Assert Assert.AreSame(firstEntity.SoilProfileEntity, secondEntity.SoilProfileEntity);