aboutsummaryrefslogtreecommitdiff
path: root/src/test/scala/firrtlTests/InfoSpec.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/scala/firrtlTests/InfoSpec.scala')
-rw-r--r--src/test/scala/firrtlTests/InfoSpec.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/scala/firrtlTests/InfoSpec.scala b/src/test/scala/firrtlTests/InfoSpec.scala
index dbc997cd..9d6206af 100644
--- a/src/test/scala/firrtlTests/InfoSpec.scala
+++ b/src/test/scala/firrtlTests/InfoSpec.scala
@@ -66,7 +66,7 @@ class InfoSpec extends FirrtlFlatSpec {
result should containLine (s"assign n = w | x; //$Info3")
}
- they should "be propagated on memories" in {
+ it should "be propagated on memories" in {
val result = compileBody(s"""
|input clock : Clock
|input addr : UInt<5>
@@ -102,7 +102,7 @@ class InfoSpec extends FirrtlFlatSpec {
result should containLine (s"m[m_w_addr] <= m_w_data; //$Info1")
}
- they should "be propagated on instances" in {
+ it should "be propagated on instances" in {
val result = compile(s"""
|circuit Test :
| module Child :