Index: Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/TreeNodeInfos/AssessmentSectionTreeNodeInfoTest.cs =================================================================== diff -u -rfec99b77571cc0cf37b60f5ca257394714fde1d7 -rfd98bcf5d1811dbcad2cc0e292a4349f8402b83a --- Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/TreeNodeInfos/AssessmentSectionTreeNodeInfoTest.cs (.../AssessmentSectionTreeNodeInfoTest.cs) (revision fec99b77571cc0cf37b60f5ca257394714fde1d7) +++ Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/TreeNodeInfos/AssessmentSectionTreeNodeInfoTest.cs (.../AssessmentSectionTreeNodeInfoTest.cs) (revision fd98bcf5d1811dbcad2cc0e292a4349f8402b83a) @@ -123,21 +123,16 @@ public void EnsureVisibleOnCreate_Always_ReturnsTrue() { // Setup - var assessmentSection = mocks.StrictMock(); - - mocks.ReplayAll(); - using (var plugin = new RingtoetsGuiPlugin()) { var info = GetInfo(plugin); // Call - var result = info.EnsureVisibleOnCreate(assessmentSection); + var result = info.EnsureVisibleOnCreate(null, null); // Assert Assert.IsTrue(result); } - mocks.VerifyAll(); } [Test]