aboutsummaryrefslogtreecommitdiff
path: root/src/test/scala/firrtlTests/fixed
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/scala/firrtlTests/fixed')
-rw-r--r--src/test/scala/firrtlTests/fixed/RemoveFixedTypeSpec.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/scala/firrtlTests/fixed/RemoveFixedTypeSpec.scala b/src/test/scala/firrtlTests/fixed/RemoveFixedTypeSpec.scala
index ce591485..34a22c26 100644
--- a/src/test/scala/firrtlTests/fixed/RemoveFixedTypeSpec.scala
+++ b/src/test/scala/firrtlTests/fixed/RemoveFixedTypeSpec.scala
@@ -178,10 +178,10 @@ class RemoveFixedTypeSpec extends FirrtlFlatSpec {
| io_out <= io_in
""".stripMargin
- class CheckChirrtlTransform extends PassBasedTransform {
+ class CheckChirrtlTransform extends SeqTransform {
def inputForm = ChirrtlForm
def outputForm = ChirrtlForm
- val passSeq = Seq(passes.CheckChirrtl)
+ val transforms = Seq(passes.CheckChirrtl)
}
val chirrtlTransform = new CheckChirrtlTransform