aboutsummaryrefslogtreecommitdiff
path: root/src/test/scala/firrtlTests/RemoveWiresSpec.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/scala/firrtlTests/RemoveWiresSpec.scala')
-rw-r--r--src/test/scala/firrtlTests/RemoveWiresSpec.scala6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/test/scala/firrtlTests/RemoveWiresSpec.scala b/src/test/scala/firrtlTests/RemoveWiresSpec.scala
index dd3155d0..e6b60059 100644
--- a/src/test/scala/firrtlTests/RemoveWiresSpec.scala
+++ b/src/test/scala/firrtlTests/RemoveWiresSpec.scala
@@ -163,7 +163,7 @@ class RemoveWiresSpec extends FirrtlFlatSpec {
|c <= n""".stripMargin
)
// Check declaration before use is maintained
- passes.CheckHighForm.execute(result)
+ firrtl.passes.CheckHighForm.execute(result)
}
it should "order registers with async reset correctly" in {
@@ -180,7 +180,7 @@ class RemoveWiresSpec extends FirrtlFlatSpec {
|""".stripMargin
)
// Check declaration before use is maintained
- passes.CheckHighForm.execute(result)
+ firrtl.passes.CheckHighForm.execute(result)
}
it should "order registers respecting initializations" in {
@@ -195,7 +195,7 @@ class RemoveWiresSpec extends FirrtlFlatSpec {
|bar <= y
|""".stripMargin)
// Check declaration before use is maintained
- passes.CheckHighForm.execute(result)
+ firrtl.passes.CheckHighForm.execute(result)
}
}