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 3457a4e commit 2e25668Copy full SHA for 2e25668
common-test/src/main/scala/org/scalatest/prop/Randomizer.scala
@@ -2244,7 +2244,7 @@ object Randomizer {
2244
*/
2245
def apply(seed: Long): Randomizer =
2246
new Randomizer(seed) {
2247
- override private[scalatest] lazy val scrambledSeed: Long = (seed ^ 0x5DEECE66DL) & ((1L << 48) - 1)
+ override private[scalatest] lazy val scrambledSeed: Long = (this.seed ^ 0x5DEECE66DL) & ((1L << 48) - 1)
2248
}
2249
2250
/**
0 commit comments