diff options
Diffstat (limited to 'src/test/scala/firrtlTests/CompilerTests.scala')
| -rw-r--r-- | src/test/scala/firrtlTests/CompilerTests.scala | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/test/scala/firrtlTests/CompilerTests.scala b/src/test/scala/firrtlTests/CompilerTests.scala index ce70a992..da267588 100644 --- a/src/test/scala/firrtlTests/CompilerTests.scala +++ b/src/test/scala/firrtlTests/CompilerTests.scala @@ -14,6 +14,7 @@ import firrtl.{ Compiler, Parser } +import firrtl.Annotations.AnnotationMap /** * An example methodology for testing Firrtl compilers. @@ -29,7 +30,7 @@ abstract class CompilerSpec extends FlatSpec { def input: String def check: String def getOutput: String = { - compiler.compile(parse(input), Seq.empty, writer) + compiler.compile(parse(input), new AnnotationMap(Seq.empty), writer) writer.toString() } } |
