Skip to content

Commit 59340a5

Browse files
committed
Update test_builder.py
1 parent d5f62cf commit 59340a5

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/test_pownet/test_core/test_builder.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,10 @@ class TestModelBuilder(unittest.TestCase):
1818

1919
def setUp(self) -> None:
2020
# Load the test data
21-
test_model_library_path = get_test_model_dir()
21+
test_model_library_path = os.path.join(
22+
os.path.dirname(__file__), "..", "test_model_library"
23+
)
24+
print(f"Test model library path: {test_model_library_path}")
2225

2326
self.inputs = SystemInput(
2427
input_folder=test_model_library_path,

0 commit comments

Comments
 (0)