Index: Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/Views/WaveHeightLocationsViewTest.cs =================================================================== diff -u -r06b2840a2bb64c0960c8ac29322b5a0971c73c77 -r1042a38d3663daeda5a8e1083edbc63a4b6aae94 --- Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/Views/WaveHeightLocationsViewTest.cs (.../WaveHeightLocationsViewTest.cs) (revision 06b2840a2bb64c0960c8ac29322b5a0971c73c77) +++ Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/Views/WaveHeightLocationsViewTest.cs (.../WaveHeightLocationsViewTest.cs) (revision 1042a38d3663daeda5a8e1083edbc63a4b6aae94) @@ -212,8 +212,11 @@ var guiServiceMock = mockRepository.StrictMock(); IEnumerable locations = null; - guiServiceMock.Expect(ch => ch.CalculateWaveHeights(null, null, null, null, null, 1)).IgnoreArguments().WhenCalled( - invocation => { locations = (IEnumerable) invocation.Arguments[3]; }); + guiServiceMock.Expect(ch => ch.CalculateWaveHeights(null, null, null, 1, null)).IgnoreArguments().WhenCalled( + invocation => + { + locations = (IEnumerable) invocation.Arguments[1]; + }).Return(false); mockRepository.ReplayAll(); view.CalculationGuiService = guiServiceMock;