Index: src/Deltares.DSoilModel.Forms.Tests/SosSoilProfile1DControlTest.cs =================================================================== diff -u -r1091 -r1092 --- src/Deltares.DSoilModel.Forms.Tests/SosSoilProfile1DControlTest.cs (.../SosSoilProfile1DControlTest.cs) (revision 1091) +++ src/Deltares.DSoilModel.Forms.Tests/SosSoilProfile1DControlTest.cs (.../SosSoilProfile1DControlTest.cs) (revision 1092) @@ -35,14 +35,9 @@ PropertyControl.SelectedObject = profile; - TestTextEditVisibleEnabledValue(PropertyControl, "NameEdit", true, true, profile, p => p.Name, "NewName"); - TestLabelControlVisibleValue(PropertyControl, "NameLabel", true, "Naam"); - - Thread.Sleep(100); TestSpinEditVisibleEnabledValue(PropertyControl, "ProbabilityEdit", true, true, profile, p => p.ProbabilityOfOccurrence, 1.0); // TODO: Fails on Teamcity TestLabelControlVisibleValue(PropertyControl, "ProbabilityLabel", true, "Kans [-]"); // TODO: Fails on Teamcity - Thread.Sleep(100); TestSpinEditVisibleEnabledValue(PropertyControl, "XEdit", true, true, profile, p => p.X, 1.0); // TODO: Fails on Teamcity TestLabelControlVisibleValue(PropertyControl, "XLabel", true, "X (RD) [m]"); // TODO: Fails on Teamcity @@ -58,6 +53,9 @@ TestSpinEditVisibleEnabledValue(PropertyControl, "HeightEdit", true, false, profile, p => p.Height); TestLabelControlVisibleValue(PropertyControl, "HeightLabel", true, "Hoogte [m]"); + TestTextEditVisibleEnabledValue(PropertyControl, "NameEdit", true, true, profile, p => p.Name, "NewName"); + TestLabelControlVisibleValue(PropertyControl, "NameLabel", true, "Naam"); + TestGridVisibleEnabledSize(PropertyControl, "LayersGridControl", true, true, 2, 11); }