Index: Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/Views/SectionResultRows/MacrostabilityInwardsSectionResultRowTest.cs =================================================================== diff -u -r974fb1eadbd8a630c7a992648ad42ac85ec205b1 -ra1bba29ba0d84061cca88da8324957087d564db9 --- Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/Views/SectionResultRows/MacrostabilityInwardsSectionResultRowTest.cs (.../MacrostabilityInwardsSectionResultRowTest.cs) (revision 974fb1eadbd8a630c7a992648ad42ac85ec205b1) +++ Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/Views/SectionResultRows/MacrostabilityInwardsSectionResultRowTest.cs (.../MacrostabilityInwardsSectionResultRowTest.cs) (revision a1bba29ba0d84061cca88da8324957087d564db9) @@ -109,7 +109,7 @@ TestDelegate test = () => row.AssessmentLayerTwoA = value; // Assert - var message = Assert.Throws(test).Message; + string message = Assert.Throws(test).Message; const string expectedMessage = "De waarde voor de faalkans moet in het bereik [0,0, 1,0] liggen."; Assert.AreEqual(expectedMessage, message); } @@ -119,7 +119,7 @@ { // Setup var random = new Random(21); - var newValue = random.NextDouble(); + double newValue = random.NextDouble(); FailureMechanismSection section = CreateSection(); var result = new MacrostabilityInwardsFailureMechanismSectionResult(section); var row = new MacrostabilityInwardsSectionResultRow(result);