Index: Ringtoets/GrassCoverErosionInwards/test/Ringtoets.GrassCoverErosionInwards.Forms.Test/TreeNodeInfos/GrassCoverErosionInwardsOutputTreeNodeInfoTest.cs =================================================================== diff -u -r1d2df58f537b31f1a7938eb42b329451aa2fa4e0 -r8047e7fd59525ed424105aaefc4ee88b9ae8def6 --- Ringtoets/GrassCoverErosionInwards/test/Ringtoets.GrassCoverErosionInwards.Forms.Test/TreeNodeInfos/GrassCoverErosionInwardsOutputTreeNodeInfoTest.cs (.../GrassCoverErosionInwardsOutputTreeNodeInfoTest.cs) (revision 1d2df58f537b31f1a7938eb42b329451aa2fa4e0) +++ Ringtoets/GrassCoverErosionInwards/test/Ringtoets.GrassCoverErosionInwards.Forms.Test/TreeNodeInfos/GrassCoverErosionInwardsOutputTreeNodeInfoTest.cs (.../GrassCoverErosionInwardsOutputTreeNodeInfoTest.cs) (revision 8047e7fd59525ed424105aaefc4ee88b9ae8def6) @@ -26,7 +26,7 @@ using Core.Common.TestUtil; using NUnit.Framework; using Rhino.Mocks; -using Ringtoets.GrassCoverErosionInwards.Data; +using Ringtoets.Common.Data.Calculation; using Ringtoets.GrassCoverErosionInwards.Plugin; using GrassCoverErosionInwardsFormsResources = Ringtoets.GrassCoverErosionInwards.Forms.Properties.Resources; using RingtoetsCommonFormsResources = Ringtoets.Common.Forms.Properties.Resources; @@ -45,14 +45,14 @@ { mocksRepository = new MockRepository(); plugin = new GrassCoverErosionInwardsGuiPlugin(); - info = plugin.GetTreeNodeInfos().First(tni => tni.TagType == typeof(GrassCoverErosionInwardsOutput)); + info = plugin.GetTreeNodeInfos().First(tni => tni.TagType == typeof(ProbabilisticOutput)); } [Test] public void Initialized_Always_ExpectedPropertiesSet() { // Assert - Assert.AreEqual(typeof(GrassCoverErosionInwardsOutput), info.TagType); + Assert.AreEqual(typeof(ProbabilisticOutput), info.TagType); Assert.IsNotNull(info.Text); Assert.IsNotNull(info.Image); Assert.IsNotNull(info.ContextMenuStrip);