From 80f5eb3f50c4e6ef5c893abc3b82795f9b61ae18 Mon Sep 17 00:00:00 2001 From: Logan Cusano Date: Mon, 29 Dec 2025 19:43:11 -0500 Subject: [PATCH] Fix test path --- tests/test_op25_controller.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_op25_controller.py b/tests/test_op25_controller.py index af945f3..eb49895 100644 --- a/tests/test_op25_controller.py +++ b/tests/test_op25_controller.py @@ -7,7 +7,7 @@ import os # The router is included in the main app, so we test through it. # We need to adjust the python path for imports to work correctly import sys -sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), '..'))) +sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), '..', 'app'))) from app.node_main import app