summaryrefslogtreecommitdiff
path: root/src/test/scala/chiselTests/VecLiteralSpec.scala
diff options
context:
space:
mode:
authorJack Koenig2021-08-23 22:53:18 -0700
committerGitHub2021-08-23 22:53:18 -0700
commite2f5b13d457b80ff7047e70fcae61ab930bd2965 (patch)
treedc165d416200535f6ab6bfbf558d935025ae3b69 /src/test/scala/chiselTests/VecLiteralSpec.scala
parentf50ce19406e45982390162777fb62c8563c962c7 (diff)
parenta6eb2ad8b6ff50bf245d610891808e436b19ed01 (diff)
Merge pull request #2083 from chipsalliance/lazy-fir-emission
Lazy .fir Emission
Diffstat (limited to 'src/test/scala/chiselTests/VecLiteralSpec.scala')
-rw-r--r--src/test/scala/chiselTests/VecLiteralSpec.scala8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/test/scala/chiselTests/VecLiteralSpec.scala b/src/test/scala/chiselTests/VecLiteralSpec.scala
index d11289e1..d91cd2f4 100644
--- a/src/test/scala/chiselTests/VecLiteralSpec.scala
+++ b/src/test/scala/chiselTests/VecLiteralSpec.scala
@@ -461,10 +461,10 @@ class VecLiteralSpec extends ChiselFreeSpec with Utils {
"vec literals can contain bundles" in {
val chirrtl = (new chisel3.stage.ChiselStage).emitChirrtl(new VecExample, args = Array("--full-stacktrace"))
- chirrtl should include("""out[0].bar <= UInt<5>("h016")""")
- chirrtl should include("""out[0].foo <= UInt<6>("h02a")""")
- chirrtl should include("""out[1].bar <= UInt<2>("h03")""")
- chirrtl should include("""out[1].foo <= UInt<3>("h07")""")
+ chirrtl should include("""out[0].bar <= UInt<5>("h16")""")
+ chirrtl should include("""out[0].foo <= UInt<6>("h2a")""")
+ chirrtl should include("""out[1].bar <= UInt<2>("h3")""")
+ chirrtl should include("""out[1].foo <= UInt<3>("h7")""")
}