summaryrefslogtreecommitdiff
path: root/src/test/scala/chiselTests/InlineSpec.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/scala/chiselTests/InlineSpec.scala')
-rw-r--r--src/test/scala/chiselTests/InlineSpec.scala5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/test/scala/chiselTests/InlineSpec.scala b/src/test/scala/chiselTests/InlineSpec.scala
index 3cc83bb9..a7d95fad 100644
--- a/src/test/scala/chiselTests/InlineSpec.scala
+++ b/src/test/scala/chiselTests/InlineSpec.scala
@@ -9,9 +9,10 @@ import firrtl.passes.InlineAnnotation
import firrtl.transforms.FlattenAnnotation
import firrtl.analyses.InstanceGraph
import firrtl.{ir => fir}
-import org.scalatest.{FreeSpec, Matchers}
+import org.scalatest.freespec.AnyFreeSpec
+import org.scalatest.matchers.should.Matchers
-class InlineSpec extends FreeSpec with ChiselRunners with Matchers {
+class InlineSpec extends AnyFreeSpec with ChiselRunners with Matchers {
trait Internals { this: Module =>
val io = IO(new Bundle{ val a = Input(Bool()) })