diff options
Diffstat (limited to 'src/test/scala/firrtlTests/graph/DiGraphTests.scala')
| -rw-r--r-- | src/test/scala/firrtlTests/graph/DiGraphTests.scala | 4 |
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 da268e4f..84122f83 100644 --- a/src/test/scala/firrtlTests/graph/DiGraphTests.scala +++ b/src/test/scala/firrtlTests/graph/DiGraphTests.scala @@ -37,11 +37,11 @@ class DiGraphTests extends FirrtlFlatSpec { acyclicGraph.path("a","e") should not be empty - an [acyclicGraph.PathNotFoundException] should be thrownBy acyclicGraph.path("e","a") + an [PathNotFoundException] should be thrownBy acyclicGraph.path("e","a") acyclicGraph.linearize.head should equal ("a") - a [cyclicGraph.CyclicException] should be thrownBy cyclicGraph.linearize + a [CyclicException] should be thrownBy cyclicGraph.linearize acyclicGraph.reverse.getEdgeMap should equal (reversedAcyclicGraph.getEdgeMap) |
