Index: Riskeer/Integration/test/Riskeer.Integration.IO.Test/Importers/HydraulicBoundaryDatabaseImporterTest.cs =================================================================== diff -u -ra1942d6fcc0366f04df3ec296180edb75ac2a342 -rbfa44fa62c6d0a5588a3f2ded4381ef2796dc2ac --- Riskeer/Integration/test/Riskeer.Integration.IO.Test/Importers/HydraulicBoundaryDatabaseImporterTest.cs (.../HydraulicBoundaryDatabaseImporterTest.cs) (revision a1942d6fcc0366f04df3ec296180edb75ac2a342) +++ Riskeer/Integration/test/Riskeer.Integration.IO.Test/Importers/HydraulicBoundaryDatabaseImporterTest.cs (.../HydraulicBoundaryDatabaseImporterTest.cs) (revision bfa44fa62c6d0a5588a3f2ded4381ef2796dc2ac) @@ -358,9 +358,6 @@ var mocks = new MockRepository(); var handler = mocks.StrictMock(); - handler.Expect(h => h.IsConfirmationRequired(null, null)) - .IgnoreArguments() - .Return(false); handler.Expect(h => h.Update(Arg.Is.Same(hydraulicBoundaryData), Arg.Is.NotNull, @@ -407,9 +404,6 @@ var mocks = new MockRepository(); var handler = mocks.StrictMock(); - handler.Expect(h => h.IsConfirmationRequired(null, null)) - .IgnoreArguments() - .Return(false); handler.Expect(h => h.Update(Arg.Is.Same(hydraulicBoundaryData), Arg.Is.NotNull, @@ -449,7 +443,6 @@ // Setup var mocks = new MockRepository(); var handler = mocks.Stub(); - handler.Stub(h => h.IsConfirmationRequired(null, null)).IgnoreArguments().Return(false); handler.Stub(h => h.Update(null, null, null, null, null, null)).IgnoreArguments().Return(Enumerable.Empty()); mocks.ReplayAll();