aboutsummaryrefslogtreecommitdiff
path: root/src/test
diff options
context:
space:
mode:
Diffstat (limited to 'src/test')
-rw-r--r--src/test/scala/firrtlTests/transforms/DedupTests.scala8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/test/scala/firrtlTests/transforms/DedupTests.scala b/src/test/scala/firrtlTests/transforms/DedupTests.scala
index b23e9127..62015388 100644
--- a/src/test/scala/firrtlTests/transforms/DedupTests.scala
+++ b/src/test/scala/firrtlTests/transforms/DedupTests.scala
@@ -116,10 +116,10 @@ class DedupModuleTests extends HighTransformSpec {
| module Top :
| inst a1 of A
| inst a2 of A
- | module A : @[yy 2:2 xx 1:1]
- | output x: UInt<1> @[yy 2:2 xx 1:1]
- | inst b of B @[yy 2:2 xx 1:1]
- | x <= b.x @[yy 2:2 xx 1:1]
+ | module A : @[yy 2:2]
+ | output x: UInt<1> @[yy 2:2]
+ | inst b of B @[yy 2:2]
+ | x <= b.x @[yy 2:2]
| module B :
| output x: UInt<1>
| x <= UInt(1)