Skip to content

Commit 3f4cc6e

Browse files
committed
Use new interface to Sets
1 parent 80f8aea commit 3f4cc6e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/MaximumMatching/FlowTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public function testSingleEdge()
3030
// correct number of edges
3131
$this->assertEquals(1, $alg->getNumberOfMatches());
3232
// actual edge instance returned
33-
$this->assertEquals(array($edge), $alg->getEdges());
33+
$this->assertEquals(array($edge), $alg->getEdges()->getVector());
3434

3535
// check
3636
$flowgraph = $alg->createGraph();

0 commit comments

Comments
 (0)