aboutsummaryrefslogtreecommitdiff
path: root/src/test/scala/firrtlTests/graph
diff options
context:
space:
mode:
authorAlbert Magyar2017-11-10 14:02:39 -0800
committerJack Koenig2017-11-10 14:02:39 -0800
commit7d86a35e19519d92dc436c07359d5120b44b5a85 (patch)
tree230cf0220d373f0840e337586c983920bf3e71b6 /src/test/scala/firrtlTests/graph
parent8ed378dfc9be7e5ebaff1e6b7393b5b991ea691d (diff)
Make digraph methods deterministic (#653)
Diffstat (limited to 'src/test/scala/firrtlTests/graph')
-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)
}