summaryrefslogtreecommitdiff
path: root/src/test/scala/chiselTests/RecordSpec.scala
diff options
context:
space:
mode:
authorZachary Yedidia2022-08-23 17:20:12 -0700
committerGitHub2022-08-24 00:20:12 +0000
commitc3b06d773f1fabd2519d6c705d68381d13f1c07f (patch)
tree3607efa0d3c83b4885621b21af73ce372ee824f9 /src/test/scala/chiselTests/RecordSpec.scala
parent1c5bd39a192272877cf4b8dc3d26a9284eb0c05d (diff)
Backport .toTarget deprecation warning information (3.5.x) (#2697)
Diffstat (limited to 'src/test/scala/chiselTests/RecordSpec.scala')
-rw-r--r--src/test/scala/chiselTests/RecordSpec.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/scala/chiselTests/RecordSpec.scala b/src/test/scala/chiselTests/RecordSpec.scala
index 5aa872b0..718c1acb 100644
--- a/src/test/scala/chiselTests/RecordSpec.scala
+++ b/src/test/scala/chiselTests/RecordSpec.scala
@@ -228,7 +228,7 @@ class RecordSpec extends ChiselFlatSpec with RecordSpecUtils with Utils {
var m: SingleElementRecordModule = null
ChiselStage.elaborate { m = new SingleElementRecordModule; m }
val (log, q) = grabLog(m.r.toTarget)
- log should include(".toTarget of non-hardware Data is deprecated.")
+ log should include(".toTarget of non-hardware Data is deprecated")
assert(q.toString == "~SingleElementRecordModule|SingleElementRecordModule>r")
}