Index: DamEngine/trunk/src/Deltares.DamEngine.Data.Tests/Geometry/GeometryPointStringTests.cs =================================================================== diff -u -r6245 -r6404 --- DamEngine/trunk/src/Deltares.DamEngine.Data.Tests/Geometry/GeometryPointStringTests.cs (.../GeometryPointStringTests.cs) (revision 6245) +++ DamEngine/trunk/src/Deltares.DamEngine.Data.Tests/Geometry/GeometryPointStringTests.cs (.../GeometryPointStringTests.cs) (revision 6404) @@ -1,4 +1,4 @@ -// Copyright (C) Stichting Deltares 2024. All rights reserved. +// Copyright (C) Stichting Deltares 2025. All rights reserved. // // This file is part of the Dam Engine. // @@ -31,7 +31,7 @@ public void GivenGeometryPointStringWithRedundantPoints_WhenRemovingUnnecessaryPoints_ThenCorrectGeometryPointStringReturned() { var geometryPointString = new GeometryPointString(); - + // The polyline contains only 3 identical points => expected 1 point geometryPointString.Points.Add(new Point2D(2, 3)); geometryPointString.Points.Add(new Point2D(2, 3)); @@ -75,7 +75,7 @@ Assert.That(geometryPointString.Points[1].X, Is.EqualTo(6)); Assert.That(geometryPointString.Points[1].Z, Is.EqualTo(3)); }); - + // The polyline contains 2 straight lines with 5 points => expected 3 points geometryPointString.Points.Clear(); geometryPointString.Points.Add(new Point2D(2, 3));