From 75e62137117d48d8066937fc49f77f0199ab5a15 Mon Sep 17 00:00:00 2001 From: Dan Anglin Date: Fri, 16 Aug 2024 06:42:16 +0100 Subject: [PATCH] now try after fixing tests --- tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests.py b/tests.py index 2d37808..b6d59b8 100644 --- a/tests.py +++ b/tests.py @@ -149,7 +149,7 @@ class Tests(unittest.TestCase): { "position": maze.MazePosition(i=3, j=9, last_i=10, last_j=10), "direction": maze.MazeDirection.RIGHT, - "expected": None, + "expected": maze.MazePosition(i=3, j=10, last_i=10, last_j=10), }, { "position": maze.MazePosition(i=0, j=4, last_i=10, last_j=10),