Index: DamClients/DamUI/trunk/src/Dam/Deltares.Dam.TestHelper/ComputeHelper.cs =================================================================== diff -u -r6798 -r6800 --- DamClients/DamUI/trunk/src/Dam/Deltares.Dam.TestHelper/ComputeHelper.cs (.../ComputeHelper.cs) (revision 6798) +++ DamClients/DamUI/trunk/src/Dam/Deltares.Dam.TestHelper/ComputeHelper.cs (.../ComputeHelper.cs) (revision 6800) @@ -27,7 +27,6 @@ using Deltares.DamEngine.Io.XmlInput; using Deltares.DamEngine.Io.XmlOutput; using Deltares.Standard.Logging; -using DGeoSuite.Common; using NUnit.Framework; namespace Deltares.Dam.TestHelper @@ -79,11 +78,12 @@ } // Determine locations to calculate + // If no location names specified, run all locations foreach (LocationJob locationJob in damProjectData.LocationJobs) { - if (computeStabilityProjectParameters.LocationNames.IsNullOrEmpty()) + if (computeStabilityProjectParameters.LocationNames == null || computeStabilityProjectParameters.LocationNames.Count == 0) { - // If no location names specified, run all locations + // Run all locations locationJob.Run = true; } else