summaryrefslogtreecommitdiff
path: root/src/test/scala/chiselTests/ChiselSpec.scala
diff options
context:
space:
mode:
authorJim Lawson2020-05-05 17:41:06 -0700
committerGitHub2020-05-05 17:41:06 -0700
commit33cfe8101950721f5756207504162b566c438ba8 (patch)
treee99c9dc2e5001404ba150fd5cf5dfd0d8ffbd10d /src/test/scala/chiselTests/ChiselSpec.scala
parentfacd530880b16c53db67a9a20a95ddf053038f81 (diff)
Update scalatest 3.1.1 (#1430)
* Update scalatest to 3.1.1 * Update scalatest to 3.1.1 * Update scalatest to 3.1.1 * Add missing org.scalatest.flatspec.AnyFlatSpec import. Co-authored-by: Scala Steward <me@scala-steward.org> Co-authored-by: Scala Steward <43047562+scala-steward@users.noreply.github.com>
Diffstat (limited to 'src/test/scala/chiselTests/ChiselSpec.scala')
-rw-r--r--src/test/scala/chiselTests/ChiselSpec.scala3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/test/scala/chiselTests/ChiselSpec.scala b/src/test/scala/chiselTests/ChiselSpec.scala
index 31d6d322..801dbac2 100644
--- a/src/test/scala/chiselTests/ChiselSpec.scala
+++ b/src/test/scala/chiselTests/ChiselSpec.scala
@@ -4,6 +4,7 @@ package chiselTests
import org.scalatest._
import org.scalatest.prop._
+import org.scalatest.flatspec.AnyFlatSpec
import org.scalacheck._
import chisel3._
import chisel3.testers._
@@ -94,7 +95,7 @@ trait ChiselRunners extends Assertions with BackendCompilationUtilities {
}
/** Spec base class for BDD-style testers. */
-abstract class ChiselFlatSpec extends FlatSpec with ChiselRunners with Matchers
+abstract class ChiselFlatSpec extends AnyFlatSpec with ChiselRunners with Matchers
class ChiselTestUtilitiesSpec extends ChiselFlatSpec {
import org.scalatest.exceptions.TestFailedException