Index: src/Deltares.DSoilModel.Data.Tests/SosSoilLayer1DTest.cs =================================================================== diff -u -r602 -r614 --- src/Deltares.DSoilModel.Data.Tests/SosSoilLayer1DTest.cs (.../SosSoilLayer1DTest.cs) (revision 602) +++ src/Deltares.DSoilModel.Data.Tests/SosSoilLayer1DTest.cs (.../SosSoilLayer1DTest.cs) (revision 614) @@ -7,6 +7,7 @@ using Deltares.Geotechnics; using Deltares.Geotechnics.IO; using Deltares.Standard.EventPublisher; +using Deltares.Standard.Language; using Deltares.Standard.TestUtils; using KellermanSoftware.CompareNetObjects; using NUnit.Framework; @@ -175,9 +176,9 @@ [Test] [Category(Categories.Slow)] - [Category(Categories.WorkInProgress)] // ToDo Virginie : I wait that issue DSB-692 is solved to repair this failing unit tests public void GenerateWtiSosSoilFile() { + LocalizationManager.CurrentLanguage = LanguageType.Dutch; // purpose here is to convert the WTI_SOS from CSV/SHP to .Soil format in a script, instead of having to use the D-SoilModel GUI for this // generate a .soil file containing the complete Wti SOS, and compare the input / output @@ -209,12 +210,12 @@ database.Open(Path.Combine(sosFolder, "SosDatabase.soil")); var profilesCopy = database.ReadSoilProfiles1D(); - // wipe layer names, irrelevant + // change layer names to default foreach (var profile in profilesCopy) { foreach (var layer in profile.Layers) { - layer.Name = ""; + layer.Name = "Laag 1D"; } }