Index: Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/ViewInfos/AssemblyResultCategoriesViewInfoTest.cs =================================================================== diff -u -r4f29c5e0442b0ab7f72ec2d3fd40759d33c77aea -rff3eb273d27aa2c94d33f9d213ffcfc14da14a33 --- Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/ViewInfos/AssemblyResultCategoriesViewInfoTest.cs (.../AssemblyResultCategoriesViewInfoTest.cs) (revision 4f29c5e0442b0ab7f72ec2d3fd40759d33c77aea) +++ Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/ViewInfos/AssemblyResultCategoriesViewInfoTest.cs (.../AssemblyResultCategoriesViewInfoTest.cs) (revision ff3eb273d27aa2c94d33f9d213ffcfc14da14a33) @@ -25,6 +25,7 @@ using Core.Common.Gui.Plugin; using Core.Common.TestUtil; using NUnit.Framework; +using Ringtoets.AssemblyTool.Data; using Ringtoets.Common.Data.AssessmentSection; using Ringtoets.Integration.Data; using Ringtoets.Integration.Forms.PresentationObjects; @@ -87,7 +88,7 @@ var random = new Random(21); var assessmentSection = new AssessmentSection(random.NextEnumValue()); - using (var view = new AssemblyResultCategoriesView(assessmentSection, () => null)) + using (var view = new AssemblyResultCategoriesView(assessmentSection, Enumerable.Empty)) { // Call bool closeForData = info.CloseForData(view, assessmentSection); @@ -105,7 +106,7 @@ var assessmentSection1 = new AssessmentSection(random.NextEnumValue()); var assessmentSection2 = new AssessmentSection(random.NextEnumValue()); - using (var view = new AssemblyResultCategoriesView(assessmentSection1, () => null)) + using (var view = new AssemblyResultCategoriesView(assessmentSection1, Enumerable.Empty)) { // Call bool closeForData = info.CloseForData(view, assessmentSection2);