Index: Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/PresentationObjects/DesignWaterLevelLocationContextTest.cs =================================================================== diff -u -rb17eb09f96cdd37af57cb0c615d36366298abc07 -re61200e6c946ac66439f9788cb96dd1ca76c1a7d --- Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/PresentationObjects/DesignWaterLevelLocationContextTest.cs (.../DesignWaterLevelLocationContextTest.cs) (revision b17eb09f96cdd37af57cb0c615d36366298abc07) +++ Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/PresentationObjects/DesignWaterLevelLocationContextTest.cs (.../DesignWaterLevelLocationContextTest.cs) (revision e61200e6c946ac66439f9788cb96dd1ca76c1a7d) @@ -33,15 +33,15 @@ { // Setup var hydraulicBoundaryLocation = new HydraulicBoundaryLocation(1, "name", 2.0, 3.0); - var calculation = new HydraulicBoundaryLocationCalculation(); + var hydraulicBoundaryLocationCalculation = new HydraulicBoundaryLocationCalculation(hydraulicBoundaryLocation); // Call - var presentationObject = new DesignWaterLevelLocationContext(hydraulicBoundaryLocation, calculation); + var presentationObject = new DesignWaterLevelLocationContext(hydraulicBoundaryLocation, hydraulicBoundaryLocationCalculation); // Assert Assert.IsInstanceOf(presentationObject); Assert.AreSame(hydraulicBoundaryLocation, presentationObject.WrappedData); - Assert.AreSame(calculation, presentationObject.Calculation); + Assert.AreSame(hydraulicBoundaryLocationCalculation, presentationObject.Calculation); } } } \ No newline at end of file