Skip to content

Commit

Permalink
fixed an expression which was not doc:compiling under 2.11
Browse files Browse the repository at this point in the history
  • Loading branch information
etorreborre committed Apr 30, 2018
1 parent 5f391e6 commit 6fc1280
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ case class Parameters(minTestsOk: Int = Test.Parameters.default.
maxDiscardRatio = commandLine.floatOr("scalacheck.maxdiscardratio", maxDiscardRatio),
maxSize = commandLine.intOr ("scalacheck.maxsize", maxSize),
workers = commandLine.intOr ("scalacheck.workers", workers),
seed = commandLine.value ("scalacheck.seed").flatMap(Parameters.makeSeed).orElse(seed),
seed = commandLine.value ("scalacheck.seed").flatMap(Parameters.makeSeed).orElse(seed)
).setVerbosity(commandLine.intOr ("scalacheck.verbosity", prettyParams.verbosity))

if (commandLine.boolOr("scalacheck.verbose", false)) updated.verbose
Expand Down

0 comments on commit 6fc1280

Please sign in to comment.