Skip to content

Commit

Permalink
Fix failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
mbastian committed Mar 11, 2022
1 parent f5fe775 commit a49551a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -690,7 +690,7 @@ public boolean verify() {
//Count mutual edges
if (directedEdgesCount > 0) {
for (EdgeDraftImpl edge : edgeList) {
if (edge.getDirection().equals(EdgeDirection.DIRECTED) && getOpposite(edge) != null) {
if (isEdgeDirected(edge) && getOpposite(edge) != null) {
mutualEdgesCount++;
}
}
Expand Down

0 comments on commit a49551a

Please sign in to comment.