diff -r 3915867b6975 -r 49045f2d28d4 test/all_pairs_shortest_path_test.cc --- a/test/all_pairs_shortest_path_test.cc Fri Nov 04 13:53:22 2005 +0000 +++ b/test/all_pairs_shortest_path_test.cc Fri Nov 04 14:48:10 2005 +0000 @@ -88,15 +88,15 @@ if (it != jt) { check(johnson.dist(it, jt) == johnson.dist(it, johnson.predNode(it, jt)) + - length[johnson.pred(it, jt)], + length[johnson.predEdge(it, jt)], "Wrong edge in all pairs shortest path"); check(fibJohnson.dist(it, jt) == fibJohnson.dist(it, fibJohnson.predNode(it, jt)) + - length[fibJohnson.pred(it, jt)], + length[fibJohnson.predEdge(it, jt)], "Wrong edge in all pairs shortest path"); check(floyd.dist(it, jt) == floyd.dist(it, floyd.predNode(it, jt)) + - length[floyd.pred(it, jt)], + length[floyd.predEdge(it, jt)], "Wrong edge in all pairs shortest path"); } }