Author: simonetripodi
Date: Wed Feb 8 22:35:15 2012
New Revision: 1242153
URL: http://svn.apache.org/viewvc?rev=1242153&view=rev
Log:
typo
Modified:
commons/sandbox/graph/trunk/src/test/java/org/apache/commons/graph/shortestpath/AStarTestCase.java
Modified: commons/sandbox/graph/trunk/src/test/java/org/apache/commons/graph/shortestpath/AStarTestCase.java
URL: http://svn.apache.org/viewvc/commons/sandbox/graph/trunk/src/test/java/org/apache/commons/graph/shortestpath/AStarTestCase.java?rev=1242153&r1=1242152&r2=1242153&view=diff
==============================================================================
--- commons/sandbox/graph/trunk/src/test/java/org/apache/commons/graph/shortestpath/AStarTestCase.java
(original)
+++ commons/sandbox/graph/trunk/src/test/java/org/apache/commons/graph/shortestpath/AStarTestCase.java
Wed Feb 8 22:35:15 2012
@@ -107,7 +107,7 @@ public final class AStarTestCase
// actual path
Path<BaseLabeledVertex, BaseLabeledWeightedEdge<Double>> actual =
- findShortestPath( graph ).from( start ).to( goal ).applyingAStar( new DoubleWeight()
).withEuristic( heuristic );
+ findShortestPath( graph ).from( start ).to( goal ).applyingAStar( new DoubleWeight()
).withHeuristic( heuristic );
// assert!
|