aboutsummaryrefslogtreecommitdiff
path: root/src/test
diff options
context:
space:
mode:
authorJack2017-01-19 09:47:36 -0800
committerJack Koenig2017-01-20 12:43:52 -0800
commit06aef074c8bddd627042b4ee00d3c28abe62c798 (patch)
tree0c502f79f1a59453128d1aec1683953658886bb2 /src/test
parent6b7d3bfd528f4c4749cabb6defc044233b9e0471 (diff)
Remove merging of source locators during module deduplication
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)