Index: Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Forms.Test/Views/HeightStructuresScenarioRowTest.cs =================================================================== diff -u -rc899b9042ee83f3ac6d6213515d7edacfbe8c414 -rab20c4eb4ca81bd3845d50210d2bdb301177af6a --- Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Forms.Test/Views/HeightStructuresScenarioRowTest.cs (.../HeightStructuresScenarioRowTest.cs) (revision c899b9042ee83f3ac6d6213515d7edacfbe8c414) +++ Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Forms.Test/Views/HeightStructuresScenarioRowTest.cs (.../HeightStructuresScenarioRowTest.cs) (revision ab20c4eb4ca81bd3845d50210d2bdb301177af6a) @@ -25,6 +25,7 @@ using NUnit.Framework; using Rhino.Mocks; using Ringtoets.Common.Data.FailureMechanism; +using Ringtoets.Common.Data.Structures; using Ringtoets.Common.Forms; using Ringtoets.HeightStructures.Data; using Ringtoets.HeightStructures.Forms.Views; @@ -51,7 +52,7 @@ // Assert Assert.AreSame(sectionResult.Section.Name, row.Name); Assert.AreSame(sectionResult.Calculation, row.Calculation); - Assert.IsInstanceOf>(row); + Assert.IsInstanceOf>>(row); } [Test] @@ -78,7 +79,7 @@ var row = new HeightStructuresScenarioRow(sectionResult); - var calculation = new HeightStructuresCalculation(); + var calculation = new StructuresCalculation(); // Call row.Calculation = calculation; @@ -107,7 +108,7 @@ var row = new HeightStructuresScenarioRow(sectionResult); - var calculation = new HeightStructuresCalculation(); + var calculation = new StructuresCalculation(); // Call row.Calculation = calculation;