Index: Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.Data.Test/SoilProfile/MacroStabilityInwardsSoilProfileUnderSurfaceLineTest.cs =================================================================== diff -u -rf2838b78c54529e9b15208b44de854f7760e350f -r7585d2fd78627d94d55ffa16423af90a91e4efd4 --- Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.Data.Test/SoilProfile/MacroStabilityInwardsSoilProfileUnderSurfaceLineTest.cs (.../MacroStabilityInwardsSoilProfileUnderSurfaceLineTest.cs) (revision f2838b78c54529e9b15208b44de854f7760e350f) +++ Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.Data.Test/SoilProfile/MacroStabilityInwardsSoilProfileUnderSurfaceLineTest.cs (.../MacroStabilityInwardsSoilProfileUnderSurfaceLineTest.cs) (revision 7585d2fd78627d94d55ffa16423af90a91e4efd4) @@ -46,7 +46,7 @@ public void Constructor_PreconsolidationStressesNull_ThrowsArgumentNullException() { // Call - TestDelegate call = () => new MacroStabilityInwardsSoilProfileUnderSurfaceLine(Enumerable.Empty(), + TestDelegate call = () => new MacroStabilityInwardsSoilProfileUnderSurfaceLine(Enumerable.Empty(), null); // Assert @@ -58,9 +58,8 @@ public void Constructor_WithValidParameters_NewInstanceWithPropertiesSet() { // Call - IEnumerable layers = Enumerable.Empty(); - IEnumerable preconsolidationStresses = - Enumerable.Empty(); + IEnumerable layers = Enumerable.Empty(); + IEnumerable preconsolidationStresses = Enumerable.Empty(); // Setup var profile = new MacroStabilityInwardsSoilProfileUnderSurfaceLine(layers, preconsolidationStresses);