aboutsummaryrefslogtreecommitdiff
path: root/src/test/scala/firrtlTests/graph/DiGraphTests.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/scala/firrtlTests/graph/DiGraphTests.scala')
-rw-r--r--src/test/scala/firrtlTests/graph/DiGraphTests.scala4
1 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 9eb1c7f8..da268e4f 100644
--- a/src/test/scala/firrtlTests/graph/DiGraphTests.scala
+++ b/src/test/scala/firrtlTests/graph/DiGraphTests.scala
@@ -43,8 +43,8 @@ class DiGraphTests extends FirrtlFlatSpec {
a [cyclicGraph.CyclicException] should be thrownBy cyclicGraph.linearize
- acyclicGraph.reverse.edges should equal (reversedAcyclicGraph.edges)
+ acyclicGraph.reverse.getEdgeMap should equal (reversedAcyclicGraph.getEdgeMap)
- degenerateGraph.edges should equal (degenerateGraph.reverse.edges)
+ degenerateGraph.getEdgeMap should equal (degenerateGraph.reverse.getEdgeMap)
}