Index: Ringtoets/Common/test/Ringtoets.Common.Data.TestUtil/AssessmentSectionHelper.cs =================================================================== diff -u -raacb07cede4cf74a24528a1d466ac03e1d69f284 -r1b61e079b5ce825f3966ecac688d65e9ff567237 --- Ringtoets/Common/test/Ringtoets.Common.Data.TestUtil/AssessmentSectionHelper.cs (.../AssessmentSectionHelper.cs) (revision aacb07cede4cf74a24528a1d466ac03e1d69f284) +++ Ringtoets/Common/test/Ringtoets.Common.Data.TestUtil/AssessmentSectionHelper.cs (.../AssessmentSectionHelper.cs) (revision 1b61e079b5ce825f3966ecac688d65e9ff567237) @@ -20,7 +20,6 @@ // All rights reserved. using System; -using System.Collections; using System.Collections.Generic; using System.Linq; using Core.Common.Base.Data; @@ -39,7 +38,7 @@ /// public static class AssessmentSectionHelper { - private static readonly RoundedDouble testNormativeAssessmentLevel = new Random(21).NextRoundedDouble(); + private static readonly RoundedDouble testAssessmentLevel = new Random(21).NextRoundedDouble(); /// /// Creates a stub of with a that is not linked. @@ -85,13 +84,13 @@ } /// - /// Gets a random normative assessment level for testing purposes. + /// Gets a random assessment level for testing purposes. /// - /// The normative assessment level. + /// The assessment level. /// The returned assessment level is random, though always the same. - public static RoundedDouble GetTestNormativeAssessmentLevel() + public static RoundedDouble GetTestAssessmentLevel() { - return testNormativeAssessmentLevel; + return testAssessmentLevel; } ///