aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Lawson2020-02-13 10:31:30 -0800
committerGitHub2020-02-13 18:31:30 +0000
commite521964c794864ef934c9ee5ca5d0b6e1ee90efd (patch)
treeb3fd4ebf7a7db9cd555d551c8c59f7ecf9a20a12
parentd0791c567aceb7ef7d78e6563b3322a9969895c9 (diff)
Update ScalaTest deprecations. (#1382)
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
-rw-r--r--src/test/scala/firrtlTests/FirrtlSpec.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/scala/firrtlTests/FirrtlSpec.scala b/src/test/scala/firrtlTests/FirrtlSpec.scala
index b0d750d2..fe94a643 100644
--- a/src/test/scala/firrtlTests/FirrtlSpec.scala
+++ b/src/test/scala/firrtlTests/FirrtlSpec.scala
@@ -8,7 +8,7 @@ import java.security.Permission
import logger.LazyLogging
import org.scalatest._
-import org.scalatest.prop._
+import org.scalatestplus.scalacheck._
import firrtl._
import firrtl.ir._
@@ -255,7 +255,7 @@ object FirrtlCheckers extends FirrtlMatchers {
}
}
-abstract class FirrtlPropSpec extends PropSpec with PropertyChecks with FirrtlRunners with LazyLogging
+abstract class FirrtlPropSpec extends PropSpec with ScalaCheckPropertyChecks with FirrtlRunners with LazyLogging
abstract class FirrtlFlatSpec extends FlatSpec with FirrtlRunners with FirrtlMatchers with LazyLogging