summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSchuyler Eldridge2018-10-05 00:21:22 -0400
committerGitHub2018-10-05 00:21:22 -0400
commit822a256891ef7aeb6e79aa7aeb569a152e5e37d4 (patch)
treeebf625cdb0c9c55a3bc94a7a99bda8a0a56d0b6d /src
parentdafdeab614a5106dac4d80e147fdbc2770053e1b (diff)
parent1f24aa0d5648f7e55f8ec4fb307a25ac35cde58d (diff)
Merge pull request #898 from seldridge/fix-inlining
Change InlineSpec to expect "_" and not "$"
Diffstat (limited to 'src')
-rw-r--r--src/test/scala/chiselTests/InlineSpec.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/scala/chiselTests/InlineSpec.scala b/src/test/scala/chiselTests/InlineSpec.scala
index a2aabdb3..0bb29fdf 100644
--- a/src/test/scala/chiselTests/InlineSpec.scala
+++ b/src/test/scala/chiselTests/InlineSpec.scala
@@ -50,7 +50,7 @@ class InlineSpec extends FreeSpec with ChiselRunners with Matchers {
}
"low FIRRTL should contain only instance z" in {
val instances = collectInstances(firrtlResult.circuitState.circuit, Some("Top")).toSet
- Set("Top", "Top.x$sub", "Top.y$sub", "Top.z", "Top.z.sub") should be (instances)
+ Set("Top", "Top.x_sub", "Top.y_sub", "Top.z", "Top.z.sub") should be (instances)
}
}
}