Index: Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/Views/SectionResultRows/MacrostabilityOutwardsSectionResultRowTest.cs =================================================================== diff -u -r673e35de0df920529e5dda63ea8b4dfb08ed65a8 -rfd75ff7d1794c6a64fd3ce1aa1f159effba2e102 --- Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/Views/SectionResultRows/MacrostabilityOutwardsSectionResultRowTest.cs (.../MacrostabilityOutwardsSectionResultRowTest.cs) (revision 673e35de0df920529e5dda63ea8b4dfb08ed65a8) +++ Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/Views/SectionResultRows/MacrostabilityOutwardsSectionResultRowTest.cs (.../MacrostabilityOutwardsSectionResultRowTest.cs) (revision fd75ff7d1794c6a64fd3ce1aa1f159effba2e102) @@ -42,7 +42,7 @@ public void Constructor_WithSectionResult_ExpectedValues() { // Setup - var section = CreateSection(); + FailureMechanismSection section = CreateSection(); var result = new MacrostabilityOutwardsFailureMechanismSectionResult(section); // Call @@ -56,7 +56,7 @@ public void Constructor_WithSectionResult_PropertiesFromSectionAndResult() { // Setup - var section = CreateSection(); + FailureMechanismSection section = CreateSection(); var result = new MacrostabilityOutwardsFailureMechanismSectionResult(section); // Call @@ -82,7 +82,7 @@ public void AssessmentLayerTwoA_ForValidValues_ResultPropertyChanged(double value) { // Setup - var section = CreateSection(); + FailureMechanismSection section = CreateSection(); var result = new MacrostabilityOutwardsFailureMechanismSectionResult(section); var row = new MacrostabilityOutwardsSectionResultRow(result); @@ -101,7 +101,7 @@ public void AssessmentLayerTwoA_ForInvalidValues_ThrowsArgumentException(double value) { // Setup - var section = CreateSection(); + FailureMechanismSection section = CreateSection(); var result = new MacrostabilityOutwardsFailureMechanismSectionResult(section); var row = new MacrostabilityOutwardsSectionResultRow(result); @@ -120,7 +120,7 @@ // Setup var random = new Random(21); var newValue = random.NextDouble(); - var section = CreateSection(); + FailureMechanismSection section = CreateSection(); var result = new MacrostabilityOutwardsFailureMechanismSectionResult(section); var row = new MacrostabilityOutwardsSectionResultRow(result);