From 6af04b18bb3b9a279a2cf101a6749db18174e9ef Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Henrik=20tom=20W=C3=B6rden?= <h.tomwoerden@indiscale.com>
Date: Wed, 10 May 2023 12:39:50 +0200
Subject: [PATCH] MAINT: correct path

---
 integrationtests/basic_example/test_basic.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/integrationtests/basic_example/test_basic.py b/integrationtests/basic_example/test_basic.py
index f67628b3..b2d4c8f7 100755
--- a/integrationtests/basic_example/test_basic.py
+++ b/integrationtests/basic_example/test_basic.py
@@ -50,11 +50,12 @@ set_test_key("10b128cf8a1372f30aa3697466bb55e76974e0c16a599bb44ace88f19c8f61e2")
 # TODO move test related stuff here and remove it from unittests
 
 UNITTESTDIR = Path(__file__).parent.parent.parent / "unittests"
+BASICTESTDIR = Path(__file__).parent
 
 
 @pytest.fixture
 def usemodel():
-    model = parse_model_from_yaml(UNITTESTDIR / "model.yml")
+    model = parse_model_from_yaml(BASICTESTDIR / "model.yml")
     model.sync_data_model(noquestion=True, verbose=False)
 
 
-- 
GitLab