Index: Ringtoets/ClosingStructures/test/Ringtoets.ClosingStructures.Plugin.Test/TreeNodeInfos/ClosingStructuresScenariosContextTreeNodeInfoTest.cs =================================================================== diff -u -rc990bf404015584981f3ec1d22ecec12a7b037f3 -rdd8f41ce9d9ff9fd570874721a114560c7a71013 --- Ringtoets/ClosingStructures/test/Ringtoets.ClosingStructures.Plugin.Test/TreeNodeInfos/ClosingStructuresScenariosContextTreeNodeInfoTest.cs (.../ClosingStructuresScenariosContextTreeNodeInfoTest.cs) (revision c990bf404015584981f3ec1d22ecec12a7b037f3) +++ Ringtoets/ClosingStructures/test/Ringtoets.ClosingStructures.Plugin.Test/TreeNodeInfos/ClosingStructuresScenariosContextTreeNodeInfoTest.cs (.../ClosingStructuresScenariosContextTreeNodeInfoTest.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; @@ -84,7 +85,7 @@ public void Text_Always_ReturnsTextFromResource() { // Call - var text = info.Text(null); + string text = info.Text(null); // Assert Assert.AreEqual("Scenario's", text); @@ -94,7 +95,7 @@ public void Image_Always_ReturnsSetImage() { // Call - var image = info.Image(null); + Image image = info.Image(null); // Assert TestHelper.AssertImagesAreEqual(RingtoetsCommonFormsResources.ScenariosIcon, image);