From 40ca7b72681625445dd545f7b2b0fd073829bda2 Mon Sep 17 00:00:00 2001 From: Julien Rialland Date: Thu, 11 Dec 2025 19:22:17 +0100 Subject: [PATCH] Fix issue #44 --- tests/maze/test_maze.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/maze/test_maze.py b/tests/maze/test_maze.py index 84e65ba..9a30201 100644 --- a/tests/maze/test_maze.py +++ b/tests/maze/test_maze.py @@ -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):