summaryrefslogtreecommitdiff
path: root/src/test/scala/chiselTests/DriverSpec.scala
diff options
context:
space:
mode:
authorJim Lawson2020-04-13 17:24:14 -0700
committerGitHub2020-04-13 17:24:14 -0700
commitcec050dbd898b9d1f5ce4d4558af33c7e799b7a9 (patch)
treeaa189489bf495a01eea59d7b5d7cda74c4d51320 /src/test/scala/chiselTests/DriverSpec.scala
parenta39d0e13792e63e0bd3e0c1b0b9c27e309927a52 (diff)
Update scalatest to 3.1.0 (#1394)
Co-authored-by: Scala Steward <me@scala-steward.org>
Diffstat (limited to 'src/test/scala/chiselTests/DriverSpec.scala')
-rw-r--r--src/test/scala/chiselTests/DriverSpec.scala6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/test/scala/chiselTests/DriverSpec.scala b/src/test/scala/chiselTests/DriverSpec.scala
index 7190261c..05c6cad4 100644
--- a/src/test/scala/chiselTests/DriverSpec.scala
+++ b/src/test/scala/chiselTests/DriverSpec.scala
@@ -7,7 +7,9 @@ import java.io.File
import chisel3._
import firrtl.FirrtlExecutionSuccess
import org.scalacheck.Test.Failed
-import org.scalatest.{FreeSpec, Matchers, Succeeded}
+import org.scalatest.Succeeded
+import org.scalatest.freespec.AnyFreeSpec
+import org.scalatest.matchers.should.Matchers
class DummyModule extends Module {
val io = IO(new Bundle {
@@ -23,7 +25,7 @@ class TypeErrorModule extends chisel3.MultiIOModule {
out := in
}
-class DriverSpec extends FreeSpec with Matchers with chiselTests.Utils {
+class DriverSpec extends AnyFreeSpec with Matchers with chiselTests.Utils {
"Driver's execute methods are used to run chisel and firrtl" - {
"options can be picked up from comand line with no args" in {
// NOTE: Since we don't provide any arguments (notably, "--target-dir"),