Index: DamClients/DamUI/trunk/src/Dam/Tests/StiImporter/StiFileReaderTest.cs =================================================================== diff -u -r3017 -r3018 --- DamClients/DamUI/trunk/src/Dam/Tests/StiImporter/StiFileReaderTest.cs (.../StiFileReaderTest.cs) (revision 3017) +++ DamClients/DamUI/trunk/src/Dam/Tests/StiImporter/StiFileReaderTest.cs (.../StiFileReaderTest.cs) (revision 3018) @@ -24,7 +24,7 @@ using System.IO; using System.Linq; using Deltares.Dam.Data.StiImporter; -using DSGeometryCurve = Deltares.Geometry.GeometryCurve; +using GeometryCurve = Deltares.Geometry.GeometryCurve; using Deltares.Geotechnics.Soils; using Deltares.Standard.Logging; using NUnit.Framework; @@ -163,13 +163,13 @@ Assert.That(actualPoint.LocationEquals(expectedPoints[i]), Is.True); } - List curves = actualGeometry.CurveList; + List curves = actualGeometry.CurveList; var expectedCurves = new[] { - new DSGeometryCurve(bottomLeftPoint, bottomRightPoint), - new DSGeometryCurve(bottomLeftPoint, topLeftPoint), - new DSGeometryCurve(topLeftPoint, topRightPoint), - new DSGeometryCurve(bottomRightPoint, topRightPoint) + new GeometryCurve(bottomLeftPoint, bottomRightPoint), + new GeometryCurve(bottomLeftPoint, topLeftPoint), + new GeometryCurve(topLeftPoint, topRightPoint), + new GeometryCurve(bottomRightPoint, topRightPoint) }; int expectedNrOfCurves = expectedCurves.Length;