Index: Ringtoets/ClosingStructures/test/Ringtoets.ClosingStructures.Forms.Test/Views/ClosingStructuresScenarioRowTest.cs =================================================================== diff -u -r8c76ed44224c5f2e96bd030b00c9bb8565e71330 -rab20c4eb4ca81bd3845d50210d2bdb301177af6a --- Ringtoets/ClosingStructures/test/Ringtoets.ClosingStructures.Forms.Test/Views/ClosingStructuresScenarioRowTest.cs (.../ClosingStructuresScenarioRowTest.cs) (revision 8c76ed44224c5f2e96bd030b00c9bb8565e71330) +++ Ringtoets/ClosingStructures/test/Ringtoets.ClosingStructures.Forms.Test/Views/ClosingStructuresScenarioRowTest.cs (.../ClosingStructuresScenarioRowTest.cs) (revision ab20c4eb4ca81bd3845d50210d2bdb301177af6a) @@ -27,6 +27,7 @@ using Ringtoets.ClosingStructures.Data; using Ringtoets.ClosingStructures.Forms.Views; using Ringtoets.Common.Data.FailureMechanism; +using Ringtoets.Common.Data.Structures; using Ringtoets.Common.Forms; namespace Ringtoets.ClosingStructures.Forms.Test.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 ClosingStructuresScenarioRow(sectionResult); - var calculation = new ClosingStructuresCalculation(); + var calculation = new StructuresCalculation(); // Call row.Calculation = calculation; @@ -107,7 +108,7 @@ var row = new ClosingStructuresScenarioRow(sectionResult); - var calculation = new ClosingStructuresCalculation(); + var calculation = new StructuresCalculation(); // Call row.Calculation = calculation;