summaryrefslogtreecommitdiff
path: root/src/test/scala/chiselTests/AnnotationNoDedup.scala
diff options
context:
space:
mode:
authorJack2017-01-30 22:33:46 -0800
committerJack Koenig2017-01-31 11:30:28 -0800
commitec5fcc2930e8ef99ea307bc1435fe323b4b79963 (patch)
tree93bfe605c42201d53295ed3411d9106f8aee9bad /src/test/scala/chiselTests/AnnotationNoDedup.scala
parent632a7166ac1935100cb1d61add3b28d1fd4dc8f4 (diff)
Fix spelling of ChiselExecutionSuccess
Diffstat (limited to 'src/test/scala/chiselTests/AnnotationNoDedup.scala')
-rw-r--r--src/test/scala/chiselTests/AnnotationNoDedup.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/scala/chiselTests/AnnotationNoDedup.scala b/src/test/scala/chiselTests/AnnotationNoDedup.scala
index e34444a6..7c7c0583 100644
--- a/src/test/scala/chiselTests/AnnotationNoDedup.scala
+++ b/src/test/scala/chiselTests/AnnotationNoDedup.scala
@@ -51,7 +51,7 @@ class AnnotationNoDedup extends FreeSpec with Matchers {
"Firrtl provides transform that reduces identical modules to a single instance" - {
"Annotations can be added which will defeat this deduplication for specific modules instances" in {
Driver.execute(Array("-X", "low"), () => new UsesMuchUsedModule(addAnnos = true)) match {
- case ChiselExecutionSucccess(_, _, Some(firrtlResult: FirrtlExecutionSuccess)) =>
+ case ChiselExecutionSuccess(_, _, Some(firrtlResult: FirrtlExecutionSuccess)) =>
val lowFirrtl = firrtlResult.emitted
lowFirrtl should include ("module MuchUsedModule :")
@@ -64,7 +64,7 @@ class AnnotationNoDedup extends FreeSpec with Matchers {
}
"Turning off these nnotations dedup all the occurrences" in {
Driver.execute(Array("-X", "low"), () => new UsesMuchUsedModule(addAnnos = false)) match {
- case ChiselExecutionSucccess(_, _, Some(firrtlResult: FirrtlExecutionSuccess)) =>
+ case ChiselExecutionSuccess(_, _, Some(firrtlResult: FirrtlExecutionSuccess)) =>
val lowFirrtl = firrtlResult.emitted
lowFirrtl should include ("module MuchUsedModule :")