Index: Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Plugin.Test/TreeNodeInfos/FailureMechanismResultContextTreeNodeInfoTest.cs =================================================================== diff -u -rc990bf404015584981f3ec1d22ecec12a7b037f3 -rdd8f41ce9d9ff9fd570874721a114560c7a71013 --- Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Plugin.Test/TreeNodeInfos/FailureMechanismResultContextTreeNodeInfoTest.cs (.../FailureMechanismResultContextTreeNodeInfoTest.cs) (revision c990bf404015584981f3ec1d22ecec12a7b037f3) +++ Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Plugin.Test/TreeNodeInfos/FailureMechanismResultContextTreeNodeInfoTest.cs (.../FailureMechanismResultContextTreeNodeInfoTest.cs) (revision dd8f41ce9d9ff9fd570874721a114560c7a71013) @@ -19,6 +19,7 @@ // Stichting Deltares and remain full property of Stichting Deltares at all times. // All rights reserved. +using System.Drawing; using System.Linq; using Core.Common.Controls.TreeView; using Core.Common.Gui; @@ -89,7 +90,7 @@ mocks.ReplayAll(); // Call - var text = info.Text(null); + string text = info.Text(null); // Assert Assert.AreEqual(RingtoetsCommonFormsResources.FailureMechanism_AssessmentResult_DisplayName, text); @@ -102,7 +103,7 @@ mocks.ReplayAll(); // Call - var image = info.Image(null); + Image image = info.Image(null); // Assert TestHelper.AssertImagesAreEqual(RingtoetsCommonFormsResources.FailureMechanismSectionResultIcon, image);