aboutsummaryrefslogtreecommitdiff
path: root/src/test/scala/firrtlTests/transforms/GroupComponentsSpec.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/scala/firrtlTests/transforms/GroupComponentsSpec.scala')
-rw-r--r--src/test/scala/firrtlTests/transforms/GroupComponentsSpec.scala6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/test/scala/firrtlTests/transforms/GroupComponentsSpec.scala b/src/test/scala/firrtlTests/transforms/GroupComponentsSpec.scala
index c280f134..4d38340f 100644
--- a/src/test/scala/firrtlTests/transforms/GroupComponentsSpec.scala
+++ b/src/test/scala/firrtlTests/transforms/GroupComponentsSpec.scala
@@ -362,9 +362,9 @@ class GroupComponentsSpec extends MiddleTransformSpec {
| out <= add(in, wrapper.other_out)
| module Wrapper :
| output other_out: UInt<16>
- | inst other of Other
- | other_out <= other.out
- | other.in is invalid
+ | inst other_ of Other
+ | other_out <= other_.out
+ | other_.in is invalid
| module Other:
| input in: UInt<16>
| output out: UInt<16>