diff options
Diffstat (limited to 'src/test/scala/firrtlTests/CompilerTests.scala')
| -rw-r--r-- | src/test/scala/firrtlTests/CompilerTests.scala | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/test/scala/firrtlTests/CompilerTests.scala b/src/test/scala/firrtlTests/CompilerTests.scala index 8e17ceb1..6c51c252 100644 --- a/src/test/scala/firrtlTests/CompilerTests.scala +++ b/src/test/scala/firrtlTests/CompilerTests.scala @@ -2,8 +2,8 @@ package firrtlTests -import org.scalatest.FlatSpec -import org.scalatest.Matchers +import org.scalatest.flatspec.AnyFlatSpec +import org.scalatest.matchers.should.Matchers import firrtl.ir.Circuit import firrtl.{ @@ -25,7 +25,7 @@ import firrtl.{ * the compiler is executed. The output of the compiler * should be compared against the check string. */ -abstract class CompilerSpec extends FlatSpec { +abstract class CompilerSpec extends AnyFlatSpec { def parse (s: String): Circuit = Parser.parse(s.split("\n").toIterator) def compiler: Compiler def input: String |
