Skip to content
Snippets Groups Projects

Resolve "simple pathfinding"

Merged Fabian Heinrich requested to merge 120-simple-pathfinding into dev
1 file
+ 2
2
Compare changes
  • Side-by-side
  • Inline
+ 2
2
@@ -44,7 +44,7 @@ from cooperative_cuisine.utils import create_init_env_time, get_touching_counter
layouts_folder = ROOT_DIR / "configs" / "layouts"
environment_config_path = ROOT_DIR / "configs" / "environment_config.yaml"
layout_path = ROOT_DIR / "configs" / "layouts" / "basic.layout"
layout_empty_path = ROOT_DIR / "configs" / "layouts" / "basic.layout"
layout_empty_path = ROOT_DIR / "configs" / "layouts" / "empty.layout"
item_info_path = ROOT_DIR / "configs" / "item_info.yaml"
# TODO: TESTs are in absolute pixel coordinates still.
@@ -76,7 +76,7 @@ def layout_config():
@pytest.fixture
def layout_empty_config():
with open(layout_path, "r") as file:
with open(layout_empty_path, "r") as file:
layout = file.read()
return layout
Loading