aboutsummaryrefslogtreecommitdiff
path: root/src/test/scala/firrtlTests/options/RegistrationSpec.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/scala/firrtlTests/options/RegistrationSpec.scala')
-rw-r--r--src/test/scala/firrtlTests/options/RegistrationSpec.scala5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/test/scala/firrtlTests/options/RegistrationSpec.scala b/src/test/scala/firrtlTests/options/RegistrationSpec.scala
index 00b705df..41b5bbf6 100644
--- a/src/test/scala/firrtlTests/options/RegistrationSpec.scala
+++ b/src/test/scala/firrtlTests/options/RegistrationSpec.scala
@@ -2,7 +2,8 @@
package firrtlTests.options
-import org.scalatest.{FlatSpec, Matchers}
+import org.scalatest.flatspec.AnyFlatSpec
+import org.scalatest.matchers.should.Matchers
import java.util.ServiceLoader
import firrtl.options.{RegisteredTransform, RegisteredLibrary, ShellOption}
@@ -33,7 +34,7 @@ class BarLibrary extends RegisteredLibrary {
helpText = "World option") )
}
-class RegistrationSpec extends FlatSpec with Matchers {
+class RegistrationSpec extends AnyFlatSpec with Matchers {
behavior of "RegisteredTransform"