Index: Ringtoets/Revetment/test/Ringtoets.Revetment.Forms.TestUtil.Test/TestWaveConditionsInputContextTest.cs =================================================================== diff -u -r6c6101ac2da22f26fcf7151e012a985bd96fd896 -r46fc5973d93a6f1844ab8a5e80f17096829cc90d --- Ringtoets/Revetment/test/Ringtoets.Revetment.Forms.TestUtil.Test/TestWaveConditionsInputContextTest.cs (.../TestWaveConditionsInputContextTest.cs) (revision 6c6101ac2da22f26fcf7151e012a985bd96fd896) +++ Ringtoets/Revetment/test/Ringtoets.Revetment.Forms.TestUtil.Test/TestWaveConditionsInputContextTest.cs (.../TestWaveConditionsInputContextTest.cs) (revision 46fc5973d93a6f1844ab8a5e80f17096829cc90d) @@ -44,7 +44,7 @@ // Assert Assert.IsInstanceOf>(context); Assert.AreSame(waveConditionsInput, context.WrappedData); - Assert.IsInstanceOf(context.Calculation); + Assert.IsInstanceOf>(context.Calculation); Assert.IsInstanceOf(context.AssessmentSection); CollectionAssert.IsEmpty(context.ForeshoreProfiles); } @@ -63,7 +63,7 @@ // Assert Assert.IsInstanceOf>(context); Assert.AreSame(waveConditionsInput, context.WrappedData); - Assert.IsInstanceOf(context.Calculation); + Assert.IsInstanceOf>(context.Calculation); Assert.AreSame(assessmentSection, context.AssessmentSection); Assert.AreSame(profiles, context.ForeshoreProfiles); } @@ -77,7 +77,7 @@ mocks.ReplayAll(); var waveConditionsInput = new TestWaveConditionsInput(); - var calculation = new TestWaveConditionsCalculation(); + var calculation = new TestWaveConditionsCalculation(waveConditionsInput); var profiles = new ForeshoreProfile[0]; // Call