summaryrefslogtreecommitdiff
path: root/src/test/scala/chiselTests/ChiselSpec.scala
diff options
context:
space:
mode:
authorJim Lawson2017-05-25 18:41:16 -0700
committerJack Koenig2017-05-25 18:41:16 -0700
commitee599da45bd37acc9d2a23dd29cf6edffc355bda (patch)
tree956e300722231c6e56c1f6d77ff1faa01bae3bd2 /src/test/scala/chiselTests/ChiselSpec.scala
parent0d121a2e357511e9e7d975ae5f2d316e47cbf43b (diff)
Support updated scalatest/scalacheck; bump sbt and Scala versions. (#605)
bump scoverage version
Diffstat (limited to 'src/test/scala/chiselTests/ChiselSpec.scala')
-rw-r--r--src/test/scala/chiselTests/ChiselSpec.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/scala/chiselTests/ChiselSpec.scala b/src/test/scala/chiselTests/ChiselSpec.scala
index 143a1495..14672d68 100644
--- a/src/test/scala/chiselTests/ChiselSpec.scala
+++ b/src/test/scala/chiselTests/ChiselSpec.scala
@@ -68,7 +68,7 @@ class ChiselPropSpec extends PropSpec with ChiselRunners with PropertyChecks wit
// Constrain the default number of instances generated for every use of forAll.
implicit override val generatorDrivenConfig =
- PropertyCheckConfig(minSuccessful = 8, minSize = 1, maxSize = 4)
+ PropertyCheckConfiguration(minSuccessful = 8, minSize = 1, sizeRange = 3)
// Generator for small positive integers.
val smallPosInts = Gen.choose(1, 4)