Index: Ringtoets/Piping/test/Ringtoets.Piping.KernelWrapper.Test/PipingSurfaceLineCreatorTest.cs =================================================================== diff -u -r8835dbef07a012e4e7e9f8aa8e21040bfea4e079 -r6afbb616ce84cccaf56617d60c5cd821b00daab0 --- Ringtoets/Piping/test/Ringtoets.Piping.KernelWrapper.Test/PipingSurfaceLineCreatorTest.cs (.../PipingSurfaceLineCreatorTest.cs) (revision 8835dbef07a012e4e7e9f8aa8e21040bfea4e079) +++ Ringtoets/Piping/test/Ringtoets.Piping.KernelWrapper.Test/PipingSurfaceLineCreatorTest.cs (.../PipingSurfaceLineCreatorTest.cs) (revision 6afbb616ce84cccaf56617d60c5cd821b00daab0) @@ -108,12 +108,12 @@ PipingSurfaceLine actual = PipingSurfaceLineCreator.Create(surfaceLine); // Assert - var length = Math.Sqrt(2*2 + 3*3); - const double secondCoordinateFactor = (2.0*1.0 + 3.0*2.0)/(2.0*2.0 + 3.0*3.0); + double length = Math.Sqrt(2 * 2 + 3 * 3); + const double secondCoordinateFactor = (2.0 * 1.0 + 3.0 * 2.0) / (2.0 * 2.0 + 3.0 * 3.0); double[] expectedCoordinatesX = { 0.0, - secondCoordinateFactor*length, + secondCoordinateFactor * length, length }; Assert.AreEqual(name, actual.Name);