Index: DamClients/DamUI/trunk/src/Dam/Deltares.Dam.Tests/DikeCoordinateSystemConverterTest.cs =================================================================== diff -u -r6436 -r6793 --- DamClients/DamUI/trunk/src/Dam/Deltares.Dam.Tests/DikeCoordinateSystemConverterTest.cs (.../DikeCoordinateSystemConverterTest.cs) (revision 6436) +++ DamClients/DamUI/trunk/src/Dam/Deltares.Dam.Tests/DikeCoordinateSystemConverterTest.cs (.../DikeCoordinateSystemConverterTest.cs) (revision 6793) @@ -223,38 +223,26 @@ surfaceLine = CreateGlobalSurfaceLineWithAlphaBetween0and90Degrees(); surfaceLine.Name = "SL1"; dike.SurfaceLines2.Add(surfaceLine); - // Location 1 pl1 line - PL1Line pl1Line; - pl1Line = CreateGlobalPL1LineWithAlphaBetween0and90Degrees(); - pl1Line.Name = "PL1_1"; - dike.PL1Lines.Add(pl1Line); // Location 1 var location = new Location(); location.Name = "Loc1"; location.SurfaceLine2 = surfaceLine; - location.PL1Line = pl1Line; dike.Locations.Add(location); // Location 2 surface line surfaceLine = CreateGlobalSurfaceLineSteepWithAlphaBetween0and90Degrees(); surfaceLine.Name = "SL2"; dike.SurfaceLines2.Add(surfaceLine); - // Location 2 pl1 line - pl1Line = CreateGlobalPL1LineSteepWithAlphaBetween0and90Degrees(); - pl1Line.Name = "PL1_2"; - dike.PL1Lines.Add(pl1Line); // Location 2 (with sheetpiling) location = new Location(); location.Name = "Loc2"; location.SurfaceLine2 = surfaceLine; - location.PL1Line = pl1Line; dike.Locations.Add(location); // Location 3: a location which has the same surfaceline and pl1-line as Location 2 location = new Location(); location.Name = "Loc3"; location.SurfaceLine2 = surfaceLine; - location.PL1Line = pl1Line; dike.Locations.Add(location); return dike;