Index: Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/PresentationObjects/WaveHeightLocationsContextTest.cs =================================================================== diff -u -rf1bf048f691ca575f22e8807911ace0338fa425d -r4eba092cb591f9f164f1e22f5b2bba25b148dda5 --- Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/PresentationObjects/WaveHeightLocationsContextTest.cs (.../WaveHeightLocationsContextTest.cs) (revision f1bf048f691ca575f22e8807911ace0338fa425d) +++ Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/PresentationObjects/WaveHeightLocationsContextTest.cs (.../WaveHeightLocationsContextTest.cs) (revision 4eba092cb591f9f164f1e22f5b2bba25b148dda5) @@ -35,15 +35,15 @@ { // Setup var mockRepository = new MockRepository(); - var assessmentSectionMock = mockRepository.StrictMock(); + var assessmentSection = mockRepository.Stub(); mockRepository.ReplayAll(); // Call - var presentationObject = new WaveHeightLocationsContext(assessmentSectionMock); + var presentationObject = new WaveHeightLocationsContext(assessmentSection); // Assert Assert.IsInstanceOf>(presentationObject); - Assert.AreSame(assessmentSectionMock, presentationObject.WrappedData); + Assert.AreSame(assessmentSection, presentationObject.WrappedData); mockRepository.VerifyAll(); } }