Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tests/maze/test_maze.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def heuristic_cost_estimate(self, n1, n2):
return math.hypot(x2 - x1, y2 - y1)

def distance_between(self, n1, n2):
"""this method always returns 1, as two 'neighbors' are always adajcent"""
"""this method always returns 1, as two 'neighbors' are always adjacent"""
return 1

def neighbors(self, node):
Expand Down