Skip to content
Snippets Groups Projects
Commit 3802cb29 authored by DannyAbdi's avatar DannyAbdi
Browse files

reformated code

parent bfe5eb29
Branches
Tags
1 merge request!1Single and Multi-Agent Pathfinding in Maze games
...@@ -71,7 +71,7 @@ class TestDFS(unittest.TestCase): ...@@ -71,7 +71,7 @@ class TestDFS(unittest.TestCase):
self.assertEqual(dfs.get_path(), expected_path) self.assertEqual(dfs.get_path(), expected_path)
start = (0, 0) start = (0, 0)
goal = (2, 2) goal = (2, 2)
dfs._dfs(maze, start, goal) dfs._dfs(maze, start, goal)
self.assertEqual(dfs.get_path(), []) self.assertEqual(dfs.get_path(), [])
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment