Index: DamClients/DamUI/trunk/src/Dam/Deltares.Dam.Tests/CsvExporterTest.cs =================================================================== diff -u -r4388 -r4389 --- DamClients/DamUI/trunk/src/Dam/Deltares.Dam.Tests/CsvExporterTest.cs (.../CsvExporterTest.cs) (revision 4388) +++ DamClients/DamUI/trunk/src/Dam/Deltares.Dam.Tests/CsvExporterTest.cs (.../CsvExporterTest.cs) (revision 4389) @@ -40,7 +40,7 @@ [Test] public void ThrowWhenCalculationSubDirIsNull() { - var exportData = new CsvExportData("locatioName", "scenarioName"); + var exportData = new CsvExportData("locationName", "scenarioName"); exportData.BaseFileName = "base"; exportData.CalculationSubDir = ""; Assert.That(() => exportData.GetDesignResultFile(), Throws.InstanceOf()); @@ -65,7 +65,7 @@ StreamWriter file = File.CreateText(FileName); file.WriteLine(writtenContent); file.Close(); - var exportData = new CsvExportData("locatioName", "scenarioName"); + var exportData = new CsvExportData("locationName", "scenarioName"); var creator = new CsvExporter(FileName, new List { exportData