We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bbf99b7 commit 789f23bCopy full SHA for 789f23b
common/shared/src/main/scala/org/specs2/execute/Result.scala
@@ -25,10 +25,10 @@ import text.NotNullStrings.*
25
* - possibly a number of expectations when it is the outcome of several checks (this is used for the reporting of
26
* ScalaCheck properties).
27
*/
28
-sealed abstract class Result(val message: String = "", val expected: String = "", val expectationsNb: Int = 1)
+sealed abstract class Result(val message: String = "", val expected: String = "", _expectationsNb: Int = 1)
29
derives CanEqual:
30
type SelfType <: Result
31
-
+ val expectationsNb: Int = _expectationsNb
32
/** @return
33
* the colored textual status of the result
34
0 commit comments