aboutsummaryrefslogtreecommitdiff
path: root/src/test/scala/firrtlTests/graph
diff options
context:
space:
mode:
authorDavid Biancolin2020-03-17 13:26:40 -0700
committerGitHub2020-03-17 13:26:40 -0700
commitba1f24345ac5ab20c669c73b871920001ac3a8ed (patch)
treea6a55fafd5f68c35e574a34842930165af5631ad /src/test/scala/firrtlTests/graph
parentd0500b33167cad060a9325d68b939d41279f6c9c (diff)
[RFC] Factor out common test classes; package them (#1412)
* Pull out common test utilities into a separate package * Project a fat jar for test utilities Co-authored-by: Albert Magyar <albert.magyar@gmail.com>
Diffstat (limited to 'src/test/scala/firrtlTests/graph')
-rw-r--r--src/test/scala/firrtlTests/graph/DiGraphTests.scala2
-rw-r--r--src/test/scala/firrtlTests/graph/EulerTourTests.scala2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/test/scala/firrtlTests/graph/DiGraphTests.scala b/src/test/scala/firrtlTests/graph/DiGraphTests.scala
index 0771460b..71cc517e 100644
--- a/src/test/scala/firrtlTests/graph/DiGraphTests.scala
+++ b/src/test/scala/firrtlTests/graph/DiGraphTests.scala
@@ -3,7 +3,7 @@
package firrtlTests.graph
import firrtl.graph._
-import firrtlTests._
+import firrtl.testutils._
//scalastyle:off magic.number
class DiGraphTests extends FirrtlFlatSpec {
diff --git a/src/test/scala/firrtlTests/graph/EulerTourTests.scala b/src/test/scala/firrtlTests/graph/EulerTourTests.scala
index 0b69ce61..f6deb721 100644
--- a/src/test/scala/firrtlTests/graph/EulerTourTests.scala
+++ b/src/test/scala/firrtlTests/graph/EulerTourTests.scala
@@ -1,7 +1,7 @@
package firrtlTests.graph
import firrtl.graph._
-import firrtlTests._
+import firrtl.testutils._
class EulerTourTests extends FirrtlFlatSpec {