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