Index: Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil.Test/TestMacroStabilityInwardsSoilProfileTest.cs =================================================================== diff -u -r650fc7b43cb6729baee51d079f0377df8d7a3de9 -r564a695798dd77c0b90bba14c902c6caefb7786f --- Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil.Test/TestMacroStabilityInwardsSoilProfileTest.cs (.../TestMacroStabilityInwardsSoilProfileTest.cs) (revision 650fc7b43cb6729baee51d079f0377df8d7a3de9) +++ Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.KernelWrapper.TestUtil.Test/TestMacroStabilityInwardsSoilProfileTest.cs (.../TestMacroStabilityInwardsSoilProfileTest.cs) (revision 564a695798dd77c0b90bba14c902c6caefb7786f) @@ -34,7 +34,7 @@ public void DefaultConstructor_ExpectedPropertiesSet() { // Call - var profile = new TestMacroStabilityInwardsSoilProfile(); + var profile = new TestMacroStabilityInwardsSoilProfile1D(); // Assert Assert.IsEmpty(profile.Name); @@ -57,7 +57,7 @@ const string name = "some name"; // Call - var profile = new TestMacroStabilityInwardsSoilProfile(name); + var profile = new TestMacroStabilityInwardsSoilProfile1D(name); // Assert Assert.AreEqual(name, profile.Name); @@ -81,7 +81,7 @@ var soilProfileType = new Random(6543).NextEnumValue(); // Call - var profile = new TestMacroStabilityInwardsSoilProfile(name, soilProfileType); + var profile = new TestMacroStabilityInwardsSoilProfile1D(name, soilProfileType); // Assert Assert.AreEqual(name, profile.Name);