From 639aaaafbec676a839f528407ac6fefc89baced0 Mon Sep 17 00:00:00 2001 From: Dan Anglin Date: Fri, 16 Aug 2024 06:41:01 +0100 Subject: [PATCH] try failing the test --- tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests.py b/tests.py index b6d59b8..2d37808 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": maze.MazePosition(i=3, j=10, last_i=10, last_j=10), + "expected": None, }, { "position": maze.MazePosition(i=0, j=4, last_i=10, last_j=10),