Index: Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/PresentationObjects/WaveHeightCalculationsContextTest.cs =================================================================== diff -u -rf8f82b94a5b6a3a47b2b32fc1a8ab704b33f356b -r7c2e84eb2f2e6ce8c844878439bb15e4d0cee9c1 --- Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/PresentationObjects/WaveHeightCalculationsContextTest.cs (.../WaveHeightCalculationsContextTest.cs) (revision f8f82b94a5b6a3a47b2b32fc1a8ab704b33f356b) +++ Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/PresentationObjects/WaveHeightCalculationsContextTest.cs (.../WaveHeightCalculationsContextTest.cs) (revision 7c2e84eb2f2e6ce8c844878439bb15e4d0cee9c1) @@ -54,7 +54,7 @@ categoryBoundaryName); // Assert - Assert.IsInstanceOf>>(context); + Assert.IsInstanceOf>>(context); Assert.AreSame(calculations, context.WrappedData); Assert.AreSame(assessmentSection, context.AssessmentSection); Assert.AreSame(getNormFunc, context.GetNormFunc); @@ -140,7 +140,7 @@ private static readonly MockRepository mocks = new MockRepository(); private static readonly IAssessmentSection assessmentSection = mocks.Stub(); private static readonly Func getNormFunc = () => 0.01; - private static readonly ObservableList hydraulicBoundaryLocationCalculations = new ObservableList(); + private static readonly IObservableEnumerable hydraulicBoundaryLocationCalculations = new ObservableList(); private static readonly string categoryBoundaryName = "Test name"; [SetUp] @@ -183,7 +183,7 @@ private class DerivedWaveHeightCalculationsContext : WaveHeightCalculationsContext { - public DerivedWaveHeightCalculationsContext(ObservableList wrappedData, + public DerivedWaveHeightCalculationsContext(IObservableEnumerable wrappedData, IAssessmentSection assessmentSection, Func getNormFunc, string categoryBoundaryName)