Skip to content
Snippets Groups Projects
Commit cac99c40 authored by Fabian Heinrich's avatar Fabian Heinrich
Browse files

Fixed empty layout fixture in test

parent c28e0308
No related branches found
No related tags found
1 merge request!89Resolve "simple pathfinding"
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment