From cac99c409832662aa1334aab412a11723ff4cdd3 Mon Sep 17 00:00:00 2001 From: fheinrich <fheinrich@techfak.uni-bielefeld.de> Date: Mon, 18 Mar 2024 11:10:30 +0100 Subject: [PATCH] Fixed empty layout fixture in test --- tests/test_start.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_start.py b/tests/test_start.py index 4bb89d7d..a798664b 100644 --- a/tests/test_start.py +++ b/tests/test_start.py @@ -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 -- GitLab