aboutsummaryrefslogtreecommitdiff
path: root/src/test/scala/firrtlTests/passes
diff options
context:
space:
mode:
authorKevin Laeufer2020-08-10 10:58:50 -0700
committerGitHub2020-08-10 10:58:50 -0700
commit21ccf68fc0f0a3ff5a990ac9215a20f20807f4ed (patch)
treeafa23fa731deefa85168153416a2e1cc5da12727 /src/test/scala/firrtlTests/passes
parenta6d53c9df25dba7da9d923faff9bf3c32f71b2d9 (diff)
scalatest: upgrade to 3.2.1 (#1831)
* scalatest: replace deprecated FlatSpec and add new Matchers import * scalatest: 3.1.2 -> 3.2.1
Diffstat (limited to 'src/test/scala/firrtlTests/passes')
-rw-r--r--src/test/scala/firrtlTests/passes/InferTypesFlowsAndKindsSpec.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/scala/firrtlTests/passes/InferTypesFlowsAndKindsSpec.scala b/src/test/scala/firrtlTests/passes/InferTypesFlowsAndKindsSpec.scala
index de638374..bfc72f49 100644
--- a/src/test/scala/firrtlTests/passes/InferTypesFlowsAndKindsSpec.scala
+++ b/src/test/scala/firrtlTests/passes/InferTypesFlowsAndKindsSpec.scala
@@ -7,10 +7,10 @@ import firrtl.options.Dependency
import firrtl.stage.TransformManager
import firrtl.{InstanceKind, MemKind, NodeKind, PortKind, RegKind, WireKind}
import firrtl.{CircuitState, SinkFlow, SourceFlow, ir, passes}
-import org.scalatest._
+import org.scalatest.flatspec.AnyFlatSpec
/** Tests the combined results of ResolveKinds, InferTypes and ResolveFlows */
-class InferTypesFlowsAndKindsSpec extends FlatSpec {
+class InferTypesFlowsAndKindsSpec extends AnyFlatSpec {
private val deps = Seq(
Dependency(passes.ResolveKinds),
Dependency(passes.InferTypes),