Merge: curl: basic Unix domain socket support
[nit.git] / tests / test_a_star.nit
index 7293d99..25936f4 100644 (file)
@@ -91,7 +91,7 @@ class PositionPathContext
        redef fun worst_heuristic_cost do return 100
 end
 
-fun print_path(path: nullable Path[NamedNode]) do if path == null then
+fun print_path(path: nullable AStarPath[NamedNode]) do if path == null then
        print "null path"
 else
        var names = new Array[String]